Chilkat Online Tools

unicodeCpp / DocuSign Rooms API - v2 / Grants access to a document for a user.

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;

    // Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    // The following JSON is sent in the request body.

    // {}

    CkJsonObjectW json;

    http.SetRequestHeader(L"Content-Type",L"application/json-patch+json");
    // Adds the "Authorization: Bearer {{accessToken}}" header.
    http.put_AuthToken(L"{{accessToken}}");
    http.SetRequestHeader(L"Accept",L"text/plain, application/json, text/json");

    CkHttpResponseW *resp = http.PostJson3(L"https://domain.com/v2/accounts/{{accountId}}/documents/{{documentId}}/users",L"application/json-patch+json",json);
    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 -X POST
	-H "Accept: text/plain, application/json, text/json"
	-H "Content-Type: application/json-patch+json"
	-H "Authorization: Bearer {{accessToken}}"
	-d '{}'
https://domain.com/v2/accounts/{{accountId}}/documents/{{documentId}}/users

Postman Collection Item JSON

{
  "name": "Grants access to a document for a user.",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Accept",
        "value": "text/plain, application/json, text/json"
      },
      {
        "key": "Content-Type",
        "value": "application/json-patch+json"
      },
      {
        "key": "Authorization",
        "value": "Bearer {{accessToken}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{}"
    },
    "url": {
      "raw": "{{baseUrl}}/v2/accounts/{{accountId}}/documents/{{documentId}}/users",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "v2",
        "accounts",
        "{{accountId}}",
        "documents",
        "{{documentId}}",
        "users"
      ],
      "variable": [
        {
          "key": "documentId",
          "value": "{{documentId}}"
        },
        {
          "key": "accountId",
          "value": "{{accountId}}"
        }
      ]
    }
  },
  "response": [
  ]
}