Chilkat Online Tools

unicodeC / Zoho CRM REST APIs / Vendors

Back to Collection Items

#include <C_CkHttpW.h>
#include <C_CkStringBuilderW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkStringBuilderW sbResponseBody;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    http = CkHttpW_Create();

    // Adds the "Authorization: Bearer <access_token>" header.
    CkHttpW_putAuthToken(http,L"<access_token>");

    sbResponseBody = CkStringBuilderW_Create();
    success = CkHttpW_QuickGetSb(http,L"https://domain.com/crm/v2/Vendors/{{record_id}}/Attachments/{{attachment_id}}",sbResponseBody);
    if (success == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkStringBuilderW_Dispose(sbResponseBody);
        return;
    }

    wprintf(L"Response status code = %d\n",CkHttpW_getLastStatus(http));
    wprintf(L"%s\n",CkStringBuilderW_getAsString(sbResponseBody));


    CkHttpW_Dispose(http);
    CkStringBuilderW_Dispose(sbResponseBody);

    }

Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2/Vendors/{{record_id}}/Attachments/{{attachment_id}}

Postman Collection Item JSON

{
  "name": "Vendors",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{access-token}}",
          "type": "string"
        }
      ]
    },
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{api-domain}}/crm/v2/Vendors/{{record_id}}/Attachments/{{attachment_id}}",
      "host": [
        "{{api-domain}}"
      ],
      "path": [
        "crm",
        "v2",
        "Vendors",
        "{{record_id}}",
        "Attachments",
        "{{attachment_id}}"
      ]
    },
    "description": "To download a file attached to a record."
  },
  "response": [
  ]
}