C# / DocuSign Rooms API - v2 / Removes the user from the designated office.
Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Chilkat.Http http = new Chilkat.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.
// {}
Chilkat.JsonObject json = new 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");
Chilkat.HttpResponse resp = http.PostJson3("https://domain.com/v2/accounts/{{accountId}}/users/{{userId}}/remove_from_office","application/json-patch+json",json);
if (http.LastMethodSuccess == false) {
Debug.WriteLine(http.LastErrorText);
return;
}
Debug.WriteLine(Convert.ToString(resp.StatusCode));
Debug.WriteLine(resp.BodyStr);
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}}/users/{{userId}}/remove_from_office
Postman Collection Item JSON
{
"name": "Removes the user from the designated office.",
"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}}/users/{{userId}}/remove_from_office",
"host": [
"{{baseUrl}}"
],
"path": [
"v2",
"accounts",
"{{accountId}}",
"users",
"{{userId}}",
"remove_from_office"
],
"variable": [
{
"key": "userId",
"value": "{{userId}}"
},
{
"key": "accountId",
"value": "{{accountId}}"
}
]
}
},
"response": [
]
}