Back to Collection Items
<?php
include("chilkat.php");
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
$http = new CkHttp();
// Adds the "Authorization: Bearer <access_token>" header.
$http->put_AuthToken('<access_token>');
$resp = new CkHttpResponse();
$success = $http->HttpNoBody('DELETE','https://domain.com/crm/v2.1/Vendors/{{record_id}}',$resp);
if ($success == false) {
print $http->lastErrorText() . "\n";
exit;
}
print $resp->get_StatusCode() . "\n";
print $resp->bodyStr() . "\n";
?>
Curl Command
curl -X DELETE
-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2.1/Vendors/{{record_id}}
Postman Collection Item JSON
{
"name": "Vendors",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{access-token}}",
"type": "string"
}
]
},
"method": "DELETE",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/Vendors/{{record_id}}",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"Vendors",
"{{record_id}}"
]
},
"description": "To delete entities or records from the Vendors module."
},
"response": [
]
}