Back to Collection Items
#include <CkHttpW.h>
#include <CkHttpResponseW.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttpW http;
bool success;
// Adds the "Authorization: Bearer {{auth0_token}}" header.
http.put_AuthToken(L"{{auth0_token}}");
CkHttpResponseW *resp = http.QuickRequest(L"DELETE",L"https://{{auth0_domain}}/api/v2/clients/:id");
if (http.get_LastMethodSuccess() == false) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
wprintf(L"%d\n",resp->get_StatusCode());
wprintf(L"%s\n",resp->bodyStr());
delete resp;
}
Curl Command
curl -X DELETE
-H "Authorization: Bearer {{auth0_token}}"
https://{{auth0_domain}}/api/v2/clients/:id
Postman Collection Item JSON
{
"name": "Delete a client",
"request": {
"method": "DELETE",
"header": [
{
"key": "Authorization",
"value": "Bearer {{auth0_token}}"
}
],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "https://{{auth0_domain}}/api/v2/clients/:id",
"protocol": "https",
"host": [
"{{auth0_domain}}"
],
"path": [
"api",
"v2",
"clients",
":id"
],
"variable": [
{
"key": "id",
"type": "any"
}
]
},
"description": "Deletes a client and all its related assets (like rules, connections, etc) given its id."
},
"response": [
]
}