Create/Refresh Access Token

POST {{base_url}}/oauth2/access_token

For details go to https://developers.pandadoc.com/v1/reference#refresh-access_token.

For details of authentication process go to https://developers.pandadoc.com/v1/reference#authentication-process.

Request Body

[{"name"=>"grant_type", "value"=>"{{grant_type}}", "datatype"=>"string"}, {"name"=>"client_id", "value"=>"{{client_id}}", "datatype"=>"string"}, {"name"=>"client_secret", "value"=>"{{client_secret}}", "datatype"=>"string"}, {"name"=>"scope", "value"=>"read+write", "datatype"=>"string"}, {"name"=>"refresh_token", "value"=>"{{refresh_token}}", "datatype"=>"string"}, {"name"=>"code", "value"=>"{{auth_code}}", "datatype"=>"string"}, {"name"=>"redirect_url", "value"=>"{{redirect_url}}", "datatype"=>"string"}]