TCL / DocuSign eSignature REST API / Reserved: Sets the shared access information for users.
Back to Collection Items
load ./chilkat.dll
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
set http [new_CkHttp]
# 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"
# }
# ]
# }
# ]
# }
set json [new_CkJsonObject]
CkJsonObject_UpdateString $json "resultSetSize" "sample string 1"
CkJsonObject_UpdateString $json "totalSetSize" "sample string 2"
CkJsonObject_UpdateString $json "startPosition" "sample string 3"
CkJsonObject_UpdateString $json "endPosition" "sample string 4"
CkJsonObject_UpdateString $json "nextUri" "sample string 5"
CkJsonObject_UpdateString $json "previousUri" "sample string 6"
CkJsonObject_UpdateString $json "accountId" "sample string 7"
CkJsonObject_UpdateString $json "sharedAccess[0].user.userName" "sample string 1"
CkJsonObject_UpdateString $json "sharedAccess[0].user.userId" "sample string 2"
CkJsonObject_UpdateString $json "sharedAccess[0].user.email" "sample string 3"
CkJsonObject_UpdateString $json "sharedAccess[0].user.userType" "sample string 4"
CkJsonObject_UpdateString $json "sharedAccess[0].user.userStatus" "sample string 5"
CkJsonObject_UpdateString $json "sharedAccess[0].user.uri" "sample string 6"
CkJsonObject_UpdateString $json "sharedAccess[0].user.loginStatus" "sample string 7"
CkJsonObject_UpdateString $json "sharedAccess[0].user.sendActivationEmail" "sample string 8"
CkJsonObject_UpdateString $json "sharedAccess[0].user.activationAccessCode" "sample string 9"
CkJsonObject_UpdateNewObject $json "sharedAccess[0].envelopes[0].user"
CkJsonObject_UpdateString $json "sharedAccess[0].envelopes[0].shared" "sample string 1"
CkJsonObject_UpdateString $json "sharedAccess[0].templates[0].templateId" "sample string 1"
CkJsonObject_UpdateString $json "sharedAccess[0].templates[0].templateName" "sample string 2"
CkJsonObject_UpdateNewObject $json "sharedAccess[0].templates[0].owner"
CkJsonObject_UpdateNewObject $json "sharedAccess[0].templates[0].sharedUsers[0].user"
CkJsonObject_UpdateString $json "sharedAccess[0].templates[0].sharedGroups[0].group.groupId" "sample string 1"
CkJsonObject_UpdateString $json "sharedAccess[0].templates[0].sharedGroups[0].group.groupName" "sample string 2"
CkJsonObject_UpdateString $json "sharedAccess[0].templates[0].sharedGroups[0].group.permissionProfileId" "sample string 3"
CkJsonObject_UpdateString $json "sharedAccess[0].templates[0].sharedGroups[0].group.groupType" "sample string 4"
CkJsonObject_UpdateString $json "sharedAccess[0].templates[0].shared" "sample string 3"
# Adds the "Authorization: Bearer {{accessToken}}" header.
CkHttp_put_AuthToken $http "{{accessToken}}"
CkHttp_SetRequestHeader $http "Accept" "application/json"
set sbRequestBody [new_CkStringBuilder]
CkJsonObject_EmitSb $json $sbRequestBody
# resp is a CkHttpResponse
set resp [CkHttp_PTextSb $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_get_LastMethodSuccess $http] == 0} then {
puts [CkHttp_lastErrorText $http]
delete_CkHttp $http
delete_CkJsonObject $json
delete_CkStringBuilder $sbRequestBody
exit
}
puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp
delete_CkHttp $http
delete_CkJsonObject $json
delete_CkStringBuilder $sbRequestBody
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}}",
"type": "string"
}
]
},
"description": "Reserved: Sets the shared access information for one or more users."
},
"response": [
]
}