Chilkat Online Tools

unicodeC / GP-API Collection / DIA_1.2 Get Document

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();

    CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");
    CkHttpW_SetRequestHeader(http,L"X-GP-Version",L"{{version}}");
    // Adds the "Authorization: Bearer {{token}}" header.
    CkHttpW_putAuthToken(http,L"{{token}}");
    CkHttpW_SetRequestHeader(http,L"Accept",L"application/json");

    sbResponseBody = CkStringBuilderW_Create();
    success = CkHttpW_QuickGetSb(http,L"https://{{url}}/ucp/disputes/DIS_SAND_abcd1234/documents/DOC_MyEvidence_234234AVCDE-1",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 "Content-Type: application/json"
	-H "Authorization: Bearer {{token}}"
	-H "Accept: application/json"
	-H "X-GP-Version: {{version}}"
https://{{url}}/ucp/disputes/DIS_SAND_abcd1234/documents/DOC_MyEvidence_234234AVCDE-1

Postman Collection Item JSON

{
  "name": "DIA_1.2 Get Document",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "value": "application/json",
        "type": "text",
        "disabled": true
      },
      {
        "key": "Authorization",
        "type": "text",
        "value": "Bearer {{token}}"
      },
      {
        "key": "Accept",
        "type": "text",
        "value": "application/json"
      },
      {
        "key": "X-GP-Version",
        "type": "text",
        "value": "{{version}}"
      }
    ],
    "url": {
      "raw": "https://{{url}}/ucp/disputes/DIS_SAND_abcd1234/documents/DOC_MyEvidence_234234AVCDE-1",
      "protocol": "https",
      "host": [
        "{{url}}"
      ],
      "path": [
        "ucp",
        "disputes",
        "DIS_SAND_abcd1234",
        "documents",
        "DOC_MyEvidence_234234AVCDE-1"
      ]
    },
    "description": "This request is for retrieving a document that has been provided by the Issuer in a dispute. You must provide the dispute id and also the document id in the query string. In the response, you should receive the document in base 64.\r\n\r\nFor more info on getting a document in a dispute, visit: https://developer.globalpay.com/api/disputes#/Document/get_disputes__id__documents__doc_id_"
  },
  "response": [
  ]
}