Chilkat Online Tools

unicodeCpp / PandaDoc API Reference / Get Access Code

Back to Collection Items

#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkHttpResponseW.h>

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

    CkHttpW http;
    bool success;

    CkJsonObjectW queryParams;
    queryParams.UpdateString(L"client_id",L"{{client_id}}");
    queryParams.UpdateString(L"redirect_uri",L"{{redirect_uri}}");
    queryParams.UpdateString(L"scope",L"read write");
    queryParams.UpdateString(L"response_type",L"code");

    CkHttpResponseW *resp = http.QuickRequestParams(L"GET",L"https://app.pandadoc.com/oauth2/authorize",queryParams);
    if (http.get_LastMethodSuccess() == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    wprintf(L"%d\n",resp->get_StatusCode());
    wprintf(L"%s\n",resp->bodyStr());
    delete resp;
    }

Curl Command

curl -G -d "client_id=%7B%7Bclient_id%7D%7D"
	-d "redirect_uri=%7B%7Bredirect_uri%7D%7D"
	-d "scope=read%20write"
	-d "response_type=code"
https://app.pandadoc.com/oauth2/authorize

Postman Collection Item JSON

{
  "name": "Get Access Code",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "https://app.pandadoc.com/oauth2/authorize?client_id={{client_id}}&redirect_uri={{redirect_uri}}&scope=read+write&response_type=code",
      "protocol": "https",
      "host": [
        "app",
        "pandadoc",
        "com"
      ],
      "path": [
        "oauth2",
        "authorize"
      ],
      "query": [
        {
          "key": "client_id",
          "value": "{{client_id}}"
        },
        {
          "key": "redirect_uri",
          "value": "{{redirect_uri}}"
        },
        {
          "key": "scope",
          "value": "read+write"
        },
        {
          "key": "response_type",
          "value": "code"
        }
      ]
    },
    "description": "Provide values to variables: client_id, redirect_url ([Postman environments](https://www.getpostman.com/docs/postman/environments_and_globals/manage_environments) is great for it).\n\nTest this link in a web browser.\n\nYou can get the URL by going to \"Code\" - \"cURL\".\n\nFor details go to [https://developers.pandadoc.com/v1/reference#authorize-a-user](https://developers.pandadoc.com/v1/reference#authorize-a-user).\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": [
  ]
}