Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global_Ref.html">Global Unlock Sample for sample code.
http := chilkat.NewHttp()
var success bool
// Adds the "Authorization: Bearer <access_token>" header.
http.SetAuthToken("<access_token>")
resp := http.QuickRequest("POST","Request")
if http.LastMethodSuccess() == false {
fmt.Println(http.LastErrorText())
http.DisposeHttp()
return
}
fmt.Println(resp.StatusCode())
fmt.Println(resp.BodyStr())
resp.DisposeHttpResponse()
http.DisposeHttp()
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2/Cases/actions/add_tags?ids={{record_id1,record_id2}}&tag_names=Bugs,Feature Request
Postman Collection Item JSON
{
"name": "Cases",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{access-token}}",
"type": "string"
}
]
},
"method": "POST",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2/Cases/actions/add_tags?ids={{record_id1,record_id2}}&tag_names=Bugs,Feature Request",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"Cases",
"actions",
"add_tags"
],
"query": [
{
"key": "ids",
"value": "{{record_id1,record_id2}}"
},
{
"key": "tag_names",
"value": "Bugs,Feature Request"
}
]
},
"description": "To add tags to records."
},
"response": [
]
}