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
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "tags": [
// {
// "id": "{{tag_id}}",
// "name": "Custom"
// },
// {
// "id": "{{tag_id}}",
// "name": "Standard"
// }
// ]
// }
json := chilkat.NewJsonObject()
json.UpdateString("tags[0].id","{{tag_id}}")
json.UpdateString("tags[0].name","Custom")
json.UpdateString("tags[1].id","{{tag_id}}")
json.UpdateString("tags[1].name","Standard")
// Adds the "Authorization: Bearer <access_token>" header.
http.SetAuthToken("<access_token>")
sbRequestBody := chilkat.NewStringBuilder()
json.EmitSb(sbRequestBody)
resp := http.PTextSb("PUT","https://domain.com/crm/v2/settings/tags?module=Products",sbRequestBody,"utf-8","application/json",false,false)
if http.LastMethodSuccess() == false {
fmt.Println(http.LastErrorText())
http.DisposeHttp()
json.DisposeJsonObject()
sbRequestBody.DisposeStringBuilder()
return
}
fmt.Println(resp.StatusCode())
fmt.Println(resp.BodyStr())
resp.DisposeHttpResponse()
http.DisposeHttp()
json.DisposeJsonObject()
sbRequestBody.DisposeStringBuilder()
Curl Command
curl -X PUT
-H "Authorization: Bearer <access_token>"
-d '{
"tags": [
{
"id": "{{tag_id}}",
"name": "Custom"
},
{
"id": "{{tag_id}}",
"name": "Standard"
}
]
}'
https://domain.com/crm/v2/settings/tags?module=Products
Postman Collection Item JSON
{
"name": "Products",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{access-token}}",
"type": "string"
}
]
},
"method": "PUT",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"tags\": [\n {\n \"id\": \"{{tag_id}}\",\n \"name\": \"Custom\"\n },\n {\n \"id\": \"{{tag_id}}\",\n \"name\": \"Standard\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{api-domain}}/crm/v2/settings/tags?module=Products",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"settings",
"tags"
],
"query": [
{
"key": "module",
"value": "Products"
}
]
},
"description": "To update tags."
},
"response": [
]
}