Back to Collection Items
LOCAL loHttp
LOCAL lnSuccess
LOCAL loResp
* 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 CreateObject('Chilkat_9_5_0.Http')
loHttp = CreateObject('Chilkat.Http')
* Adds the "Authorization: Bearer <access_token>" header.
loHttp.AuthToken = "<access_token>"
loResp = loHttp.QuickRequest("POST","Call")
IF (loHttp.LastMethodSuccess = 0) THEN
? loHttp.LastErrorText
RELEASE loHttp
CANCEL
ENDIF
? STR(loResp.StatusCode)
? loResp.BodyStr
RELEASE loResp
RELEASE loHttp
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2/Events/actions/remove_tags?ids={{record_id1,record_id2,..}}&tag_names=Cold Call
Postman Collection Item JSON
{
"name": "Calls",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{access-token}}",
"type": "string"
}
]
},
"method": "POST",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2/Events/actions/remove_tags?ids={{record_id1,record_id2,..}}&tag_names=Cold Call",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"Events",
"actions",
"remove_tags"
],
"query": [
{
"key": "ids",
"value": "{{record_id1,record_id2,..}}"
},
{
"key": "tag_names",
"value": "Cold Call"
}
]
},
"description": "To add tags to records."
},
"response": [
]
}