Chilkat Online Tools

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

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");

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

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

// {}

// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.JsonObject')
$json = new COM("Chilkat.JsonObject");

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

// resp is a Chilkat.HttpResponse
$resp = $http->PostJson3('https://domain.com/v2/accounts/{{accountId}}/documents/{{documentId}}/users','application/json-patch+json',$json);
if ($http->LastMethodSuccess == 0) {
    print $http->LastErrorText . "\n";
    exit;
}

print $resp->StatusCode . "\n";
print $resp->BodyStr . "\n";


?>

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": [
  ]
}