Chilkat Online Tools

PureBasic / DocuSign REST API / Reserved: Sets the shared access information for users.

Back to Collection Items

IncludeFile "CkJsonObject.pb"
IncludeFile "CkStringBuilder.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"

Procedure ChilkatExample()

    ; This example assumes the Chilkat API to have been previously unlocked.
    ; See Global Unlock Sample for sample code.

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

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

    ; The following JSON is sent in the request body.

    ; {
    ;   "resultSetSize": "sample string 1",
    ;   "totalSetSize": "sample string 2",
    ;   "startPosition": "sample string 3",
    ;   "endPosition": "sample string 4",
    ;   "nextUri": "sample string 5",
    ;   "previousUri": "sample string 6",
    ;   "accountId": "sample string 7",
    ;   "sharedAccess": [
    ;     {
    ;       "user": {
    ;         "userName": "sample string 1",
    ;         "userId": "sample string 2",
    ;         "email": "sample string 3",
    ;         "userType": "sample string 4",
    ;         "userStatus": "sample string 5",
    ;         "uri": "sample string 6",
    ;         "loginStatus": "sample string 7",
    ;         "sendActivationEmail": "sample string 8",
    ;         "activationAccessCode": "sample string 9"
    ;       },
    ;       "envelopes": [
    ;         {
    ;           "user": {},
    ;           "shared": "sample string 1"
    ;         }
    ;       ],
    ;       "templates": [
    ;         {
    ;           "templateId": "sample string 1",
    ;           "templateName": "sample string 2",
    ;           "owner": {},
    ;           "sharedUsers": [
    ;             {
    ;               "user": {}
    ;             }
    ;           ],
    ;           "sharedGroups": [
    ;             {
    ;               "group": {
    ;                 "groupId": "sample string 1",
    ;                 "groupName": "sample string 2",
    ;                 "permissionProfileId": "sample string 3",
    ;                 "groupType": "sample string 4",
    ;                 "users": [
    ;                   {}
    ;                 ]
    ;               }
    ;             }
    ;           ],
    ;           "shared": "sample string 3"
    ;         }
    ;       ]
    ;     }
    ;   ]
    ; }

    json.i = CkJsonObject::ckCreate()
    If json.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckUpdateString(json,"resultSetSize","sample string 1")
    CkJsonObject::ckUpdateString(json,"totalSetSize","sample string 2")
    CkJsonObject::ckUpdateString(json,"startPosition","sample string 3")
    CkJsonObject::ckUpdateString(json,"endPosition","sample string 4")
    CkJsonObject::ckUpdateString(json,"nextUri","sample string 5")
    CkJsonObject::ckUpdateString(json,"previousUri","sample string 6")
    CkJsonObject::ckUpdateString(json,"accountId","sample string 7")
    CkJsonObject::ckUpdateString(json,"sharedAccess[0].user.userName","sample string 1")
    CkJsonObject::ckUpdateString(json,"sharedAccess[0].user.userId","sample string 2")
    CkJsonObject::ckUpdateString(json,"sharedAccess[0].user.email","sample string 3")
    CkJsonObject::ckUpdateString(json,"sharedAccess[0].user.userType","sample string 4")
    CkJsonObject::ckUpdateString(json,"sharedAccess[0].user.userStatus","sample string 5")
    CkJsonObject::ckUpdateString(json,"sharedAccess[0].user.uri","sample string 6")
    CkJsonObject::ckUpdateString(json,"sharedAccess[0].user.loginStatus","sample string 7")
    CkJsonObject::ckUpdateString(json,"sharedAccess[0].user.sendActivationEmail","sample string 8")
    CkJsonObject::ckUpdateString(json,"sharedAccess[0].user.activationAccessCode","sample string 9")
    CkJsonObject::ckUpdateNewObject(json,"sharedAccess[0].envelopes[0].user")
    CkJsonObject::ckUpdateString(json,"sharedAccess[0].envelopes[0].shared","sample string 1")
    CkJsonObject::ckUpdateString(json,"sharedAccess[0].templates[0].templateId","sample string 1")
    CkJsonObject::ckUpdateString(json,"sharedAccess[0].templates[0].templateName","sample string 2")
    CkJsonObject::ckUpdateNewObject(json,"sharedAccess[0].templates[0].owner")
    CkJsonObject::ckUpdateNewObject(json,"sharedAccess[0].templates[0].sharedUsers[0].user")
    CkJsonObject::ckUpdateString(json,"sharedAccess[0].templates[0].sharedGroups[0].group.groupId","sample string 1")
    CkJsonObject::ckUpdateString(json,"sharedAccess[0].templates[0].sharedGroups[0].group.groupName","sample string 2")
    CkJsonObject::ckUpdateString(json,"sharedAccess[0].templates[0].sharedGroups[0].group.permissionProfileId","sample string 3")
    CkJsonObject::ckUpdateString(json,"sharedAccess[0].templates[0].sharedGroups[0].group.groupType","sample string 4")
    CkJsonObject::ckUpdateString(json,"sharedAccess[0].templates[0].shared","sample string 3")

    ; Adds the "Authorization: Bearer {{accessToken}}" header.
    CkHttp::setCkAuthToken(http, "{{accessToken}}")
    CkHttp::ckSetRequestHeader(http,"Accept","application/json")

    sbRequestBody.i = CkStringBuilder::ckCreate()
    If sbRequestBody.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckEmitSb(json,sbRequestBody)

    resp.i = CkHttp::ckPTextSb(http,"PUT","https://domain.com/v2.1/accounts/{{accountId}}/shared_access?item_type={{item_type}}&preserve_existing_shared_access={{preserve_existing_shared_access}}&user_ids={{user_ids}}",sbRequestBody,"utf-8","application/json",0,0)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(json)
        CkStringBuilder::ckDispose(sbRequestBody)
        ProcedureReturn
    EndIf

    Debug Str(CkHttpResponse::ckStatusCode(resp))
    Debug CkHttpResponse::ckBodyStr(resp)
    CkHttpResponse::ckDispose(resp)



    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(json)
    CkStringBuilder::ckDispose(sbRequestBody)


    ProcedureReturn
EndProcedure

Curl Command

curl -X PUT
	-H "Accept: application/json"
	-H "Authorization: Bearer {{accessToken}}"
	-d '{
  "resultSetSize": "sample string 1",
  "totalSetSize": "sample string 2",
  "startPosition": "sample string 3",
  "endPosition": "sample string 4",
  "nextUri": "sample string 5",
  "previousUri": "sample string 6",
  "accountId": "sample string 7",
  "sharedAccess": [
    {
      "user": {
        "userName": "sample string 1",
        "userId": "sample string 2",
        "email": "sample string 3",
        "userType": "sample string 4",
        "userStatus": "sample string 5",
        "uri": "sample string 6",
        "loginStatus": "sample string 7",
        "sendActivationEmail": "sample string 8",
        "activationAccessCode": "sample string 9"
      },
      "envelopes": [
        {
          "user": {},
          "shared": "sample string 1"
        }
      ],
      "templates": [
        {
          "templateId": "sample string 1",
          "templateName": "sample string 2",
          "owner": {},
          "sharedUsers": [
            {
              "user": {}
            }
          ],
          "sharedGroups": [
            {
              "group": {
                "groupId": "sample string 1",
                "groupName": "sample string 2",
                "permissionProfileId": "sample string 3",
                "groupType": "sample string 4",
                "users": [
                  {}
                ]
              }
            }
          ],
          "shared": "sample string 3"
        }
      ]
    }
  ]
}'
https://domain.com/v2.1/accounts/{{accountId}}/shared_access?item_type={{item_type}}&preserve_existing_shared_access={{preserve_existing_shared_access}}&user_ids={{user_ids}}

Postman Collection Item JSON

{
  "name": "Reserved: Sets the shared access information for users.",
  "request": {
    "method": "PUT",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      },
      {
        "key": "Authorization",
        "value": "Bearer {{accessToken}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"resultSetSize\": \"sample string 1\",\n  \"totalSetSize\": \"sample string 2\",\n  \"startPosition\": \"sample string 3\",\n  \"endPosition\": \"sample string 4\",\n  \"nextUri\": \"sample string 5\",\n  \"previousUri\": \"sample string 6\",\n  \"accountId\": \"sample string 7\",\n  \"sharedAccess\": [\n    {\n      \"user\": {\n        \"userName\": \"sample string 1\",\n        \"userId\": \"sample string 2\",\n        \"email\": \"sample string 3\",\n        \"userType\": \"sample string 4\",\n        \"userStatus\": \"sample string 5\",\n        \"uri\": \"sample string 6\",\n        \"loginStatus\": \"sample string 7\",\n        \"sendActivationEmail\": \"sample string 8\",\n        \"activationAccessCode\": \"sample string 9\"\n      },\n      \"envelopes\": [\n        {\n          \"user\": {},\n          \"shared\": \"sample string 1\"\n        }\n      ],\n      \"templates\": [\n        {\n          \"templateId\": \"sample string 1\",\n          \"templateName\": \"sample string 2\",\n          \"owner\": {},\n          \"sharedUsers\": [\n            {\n              \"user\": {}\n            }\n          ],\n          \"sharedGroups\": [\n            {\n              \"group\": {\n                \"groupId\": \"sample string 1\",\n                \"groupName\": \"sample string 2\",\n                \"permissionProfileId\": \"sample string 3\",\n                \"groupType\": \"sample string 4\",\n                \"users\": [\n                  {}\n                ]\n              }\n            }\n          ],\n          \"shared\": \"sample string 3\"\n        }\n      ]\n    }\n  ]\n}"
    },
    "url": {
      "raw": "{{baseUrl}}/v2.1/accounts/{{accountId}}/shared_access?item_type={{item_type}}&preserve_existing_shared_access={{preserve_existing_shared_access}}&user_ids={{user_ids}}",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "v2.1",
        "accounts",
        "{{accountId}}",
        "shared_access"
      ],
      "query": [
        {
          "key": "item_type",
          "value": "{{item_type}}"
        },
        {
          "key": "preserve_existing_shared_access",
          "value": "{{preserve_existing_shared_access}}"
        },
        {
          "key": "user_ids",
          "value": "{{user_ids}}"
        }
      ],
      "variable": [
        {
          "key": "accountId",
          "value": "{{accountId}}"
        }
      ]
    },
    "description": "Reserved: Sets the shared access information for one or more users."
  },
  "response": [
  ]
}