Back to Collection Items
LOCAL loHttp
LOCAL lnSuccess
LOCAL loReq
LOCAL loJsonParam2
LOCAL loJsonParam3
LOCAL loJsonParam6
LOCAL loResp
* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Http')
loHttp = CreateObject('Chilkat.Http')
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.HttpRequest')
loReq = CreateObject('Chilkat.HttpRequest')
loReq.AddParam("grant_type","authorization_code")
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.JsonObject')
loJsonParam2 = CreateObject('Chilkat.JsonObject')
loReq.AddParam("client_id",loJsonParam2.Emit())
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.JsonObject')
loJsonParam3 = CreateObject('Chilkat.JsonObject')
loReq.AddParam("client_secret",loJsonParam3.Emit())
loReq.AddParam("code","")
loReq.AddParam("scope","read+write")
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.JsonObject')
loJsonParam6 = CreateObject('Chilkat.JsonObject')
loReq.AddParam("redirect_uri",loJsonParam6.Emit())
loReq.AddHeader("Authorization","Bearer <access_token>")
loResp = loHttp.PostUrlEncoded("https://api.pandadoc.com/oauth2/access_token",loReq)
IF (loHttp.LastMethodSuccess = 0) THEN
? loHttp.LastErrorText
RELEASE loHttp
RELEASE loReq
RELEASE loJsonParam2
RELEASE loJsonParam3
RELEASE loJsonParam6
CANCEL
ENDIF
? STR(loResp.StatusCode)
? loResp.BodyStr
RELEASE loResp
RELEASE loHttp
RELEASE loReq
RELEASE loJsonParam2
RELEASE loJsonParam3
RELEASE loJsonParam6
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
--data-urlencode 'grant_type=authorization_code'
--data-urlencode 'client_id={{client_id}}'
--data-urlencode 'client_secret={{client_secret}}'
--data-urlencode 'code='
--data-urlencode 'scope=read+write'
--data-urlencode 'redirect_uri={{redirect_uri}}'
https://api.pandadoc.com/oauth2/access_token
Postman Collection Item JSON
{
"name": "Create Access Token",
"event": [
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
"var jsonData = JSON.parse(responseBody);",
"if (jsonData.access_token !== undefined) {",
" postman.setEnvironmentVariable(\"access_token\", jsonData.access_token);",
"}",
"if (jsonData.refresh_token !== undefined) {",
" postman.setEnvironmentVariable(\"refresh_token\", jsonData.refresh_token);",
"}"
]
}
}
],
"request": {
"auth": {
"type": "oauth2"
},
"method": "POST",
"header": [
],
"body": {
"mode": "urlencoded",
"urlencoded": [
{
"key": "grant_type",
"value": "authorization_code",
"type": "text"
},
{
"key": "client_id",
"value": "{{client_id}}",
"type": "text"
},
{
"key": "client_secret",
"value": "{{client_secret}}",
"type": "text"
},
{
"key": "code",
"value": "",
"type": "text"
},
{
"key": "scope",
"value": "read+write",
"type": "text"
},
{
"key": "redirect_uri",
"value": "{{redirect_uri}}",
"type": "text"
}
]
},
"url": {
"raw": "https://api.pandadoc.com/oauth2/access_token",
"protocol": "https",
"host": [
"api",
"pandadoc",
"com"
],
"path": [
"oauth2",
"access_token"
]
},
"description": "Provide values to variables: client_id, client_secret ([Postman environments](https://www.getpostman.com/docs/postman/environments_and_globals/manage_environments) is great for it).\n\nProvide value for one-off variable code.\n\nFor details go to [https://developers.pandadoc.com/v1/reference#create-an-access_token](https://developers.pandadoc.com/v1/reference#create-an-access_token).\n\nFor details of authentication process go to [https://developers.pandadoc.com/v1/reference#authentication-process](https://developers.pandadoc.com/v1/reference#authentication-process)."
},
"response": [
]
}