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");
// Adds the "Authorization: Bearer {{auth0_token}}" header.
$http->AuthToken = '{{auth0_token}}';
// resp is a Chilkat.HttpResponse
$resp = $http->QuickRequest('DELETE','https://{{auth0_domain}}/api/v2/resource-servers/:id');
if ($http->LastMethodSuccess == 0) {
print $http->LastErrorText . "\n";
exit;
}
print $resp->StatusCode . "\n";
print $resp->BodyStr . "\n";
?>
Curl Command
curl -X DELETE
-H "Authorization: Bearer {{auth0_token}}"
https://{{auth0_domain}}/api/v2/resource-servers/:id
Postman Collection Item JSON
{
"name": "Delete a resource server",
"request": {
"method": "DELETE",
"header": [
{
"key": "Authorization",
"value": "Bearer {{auth0_token}}"
}
],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "https://{{auth0_domain}}/api/v2/resource-servers/:id",
"protocol": "https",
"host": [
"{{auth0_domain}}"
],
"path": [
"api",
"v2",
"resource-servers",
":id"
],
"variable": [
{
"key": "id",
"type": "any"
}
]
}
},
"response": [
]
}