Back to Collection Items
<?php
include("chilkat.php");
// Use "chilkat_9_5_0.php" for versions of Chilkat < 10.0.0
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
$http = new CkHttp();
$strRequestBody = '[\'{{rolegroup_Id}}\']';
// Adds the "Authorization: Bearer {{token}}" header.
$http->put_AuthToken('{{token}}');
// resp is a CkHttpResponse
$resp = $http->PText('DELETE','https://domain.com/accounts/api/organizations/{{organization_id}}/rolegroups?include_internal=false',$strRequestBody,'utf-8','application/text',false,false);
if ($http->get_LastMethodSuccess() == false) {
print $http->lastErrorText() . "\n";
exit;
}
print $resp->get_StatusCode() . "\n";
print $resp->bodyStr() . "\n";
?>
Curl Command
curl -X DELETE
-H "Authorization: Bearer {{token}}"
-d '["{{rolegroup_Id}}"]'
https://domain.com/accounts/api/organizations/{{organization_id}}/rolegroups?include_internal=false
Postman Collection Item JSON
{
"name": "Delete a rolegroup",
"request": {
"method": "DELETE",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "[\"{{rolegroup_Id}}\"]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/accounts/api/organizations/{{organization_id}}/rolegroups?include_internal=false",
"host": [
"{{url}}"
],
"path": [
"accounts",
"api",
"organizations",
"{{organization_id}}",
"rolegroups"
],
"query": [
{
"key": "include_internal",
"value": "false"
}
]
}
},
"response": [
]
}