Back to Collection Items
<?php
// 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 new COM('Chilkat_9_5_0.Chilkat.Http')
$http = new COM("Chilkat.Http");
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.HttpRequest')
$req = new COM("Chilkat.HttpRequest");
$req->AddParam('grant_type','refresh_token');
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.JsonObject')
$jsonParam2 = new COM("Chilkat.JsonObject");
$req->AddParam('client_id',$jsonParam2->emit());
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.JsonObject')
$jsonParam3 = new COM("Chilkat.JsonObject");
$req->AddParam('client_secret',$jsonParam3->emit());
$req->AddParam('scope','read+write');
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.JsonObject')
$jsonParam5 = new COM("Chilkat.JsonObject");
$req->AddParam('refresh_token',$jsonParam5->emit());
// resp is a Chilkat.HttpResponse
$resp = $http->PostUrlEncoded('https://api.pandadoc.com/oauth2/access_token',$req);
if ($http->LastMethodSuccess == 0) {
print $http->LastErrorText . "\n";
exit;
}
print $resp->StatusCode . "\n";
print $resp->BodyStr . "\n";
?>
Curl Command
curl -X POST
--data-urlencode 'grant_type=refresh_token'
--data-urlencode 'client_id={{client_id}}'
--data-urlencode 'client_secret={{client_secret}}'
--data-urlencode 'scope=read+write'
--data-urlencode 'refresh_token={{refresh_token}}'
https://api.pandadoc.com/oauth2/access_token
Postman Collection Item JSON
{
"name": "Refresh 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": {
"method": "POST",
"header": [
],
"body": {
"mode": "urlencoded",
"urlencoded": [
{
"key": "grant_type",
"value": "refresh_token",
"type": "text"
},
{
"key": "client_id",
"value": "{{client_id}}",
"type": "text"
},
{
"key": "client_secret",
"value": "{{client_secret}}",
"type": "text"
},
{
"key": "scope",
"value": "read+write",
"type": "text"
},
{
"key": "refresh_token",
"value": "{{refresh_token}}",
"type": "text"
}
]
},
"url": {
"raw": "https://api.pandadoc.com/oauth2/access_token",
"protocol": "https",
"host": [
"api",
"pandadoc",
"com"
],
"path": [
"oauth2",
"access_token"
]
},
"description": "For details go to [https://developers.pandadoc.com/v1/reference#refresh-access_token](https://developers.pandadoc.com/v1/reference#refresh-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": [
]
}