Chilkat Online Tools

lianja / PandaDoc API Reference / Document Details

Back to Collection Items

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

loHttp = createobject("CkHttp")

loHttp.SetRequestHeader("Authorization","API-Key {{api_key}}")

loSbResponseBody = createobject("CkStringBuilder")
llSuccess = loHttp.QuickGetSb("https://api.pandadoc.com/public/v1/documents/{{document_id}}/details",loSbResponseBody)
if (llSuccess = .F.) then
    ? loHttp.LastErrorText
    release loHttp
    release loSbResponseBody
    return
endif

? "Response status code = " + str(loHttp.LastStatus)
? loSbResponseBody.GetAsString()


release loHttp
release loSbResponseBody

Curl Command

curl -X GET
	-H "Authorization: Bearer {{access_token}}"
	-H "Authorization: API-Key {{api_key}}"
https://api.pandadoc.com/public/v1/documents/{{document_id}}/details

Postman Collection Item JSON

{
  "name": "Document Details",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{access_token}}",
        "disabled": true
      },
      {
        "key": "Authorization",
        "value": "API-Key {{api_key}}",
        "type": "text"
      }
    ],
    "url": {
      "raw": "https://api.pandadoc.com/public/v1/documents/{{document_id}}/details",
      "protocol": "https",
      "host": [
        "api",
        "pandadoc",
        "com"
      ],
      "path": [
        "public",
        "v1",
        "documents",
        "{{document_id}}",
        "details"
      ]
    },
    "description": "For details go to [https://developers.pandadoc.com/v1/reference#document-details](https://developers.pandadoc.com/v1/reference#document-details)."
  },
  "response": [
  ]
}