Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
// Adds the "Authorization: Bearer <access_token>" header.
http.authToken = "<access_token>"
var resp: CkoHttpResponse? = http.quickRequest("DELETE", url: "https://domain.com/crm/v2.1/Deals?ids={{record_id1,record_id2,.")
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
Curl Command
curl -X DELETE
-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2.1/Deals?ids={{record_id1,record_id2,..}}
Postman Collection Item JSON
{
"name": "Deals",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{access-token}}",
"type": "string"
}
]
},
"method": "DELETE",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/Deals?ids={{record_id1,record_id2,..}}",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"Deals"
],
"query": [
{
"key": "ids",
"value": "{{record_id1,record_id2,..}}"
}
]
},
"description": "To delete entities or records from the Deals module."
},
"response": [
]
}