Back to Collection Items
var
begin
CkHttp_putAuthToken(http,'<access_token>');success := CkHttp_HttpNoBody(http,'DELETE','https://domain.com/crm/v2.1/Price_Books/{{record_id}}/Attachments/{{attachment_id}}',resp);
Curl Command
curl -X DELETE
-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2.1/Price_Books/{{record_id}}/Attachments/{{attachment_id}}
Postman Collection Item JSON
{
"name": "Price Books",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{access-token}}",
"type": "string"
}
]
},
"method": "DELETE",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/Price_Books/{{record_id}}/Attachments/{{attachment_id}}",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"Price_Books",
"{{record_id}}",
"Attachments",
"{{attachment_id}}"
]
},
"description": "To delete a file attached to a record."
},
"response": [
]
}