Chilkat Online Tools

Python / Zoho CRM REST APIs / Solutions

Back to Collection Items

import sys
import chilkat

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

http = chilkat.CkHttp()

# 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 Solution"
#     },
#     {
#       "id": "{{tag_id}}",
#       "name": "Standard Solution"
#     }
#   ]
# }

json = chilkat.CkJsonObject()
json.UpdateString("tags[0].id","{{tag_id}}")
json.UpdateString("tags[0].name","Custom Solution")
json.UpdateString("tags[1].id","{{tag_id}}")
json.UpdateString("tags[1].name","Standard Solution")

# Adds the "Authorization: Bearer <access_token>" header.
http.put_AuthToken("<access_token>")

sbRequestBody = chilkat.CkStringBuilder()
json.EmitSb(sbRequestBody)

# resp is a CkHttpResponse
resp = http.PTextSb("PUT","https://domain.com/crm/v2.1/settings/tags?module=Solutions",sbRequestBody,"utf-8","application/json",False,False)
if (http.get_LastMethodSuccess() == False):
    print(http.lastErrorText())
    sys.exit()

print(str(resp.get_StatusCode()))
print(resp.bodyStr())

Curl Command

curl -X PUT
	-H "Authorization: Bearer <access_token>"
	-d '{
    "tags": [
        {
            "id": "{{tag_id}}",
            "name": "Custom Solution"
        },
        {
            "id": "{{tag_id}}",
            "name": "Standard Solution"
        }
    ]
}'
https://domain.com/crm/v2.1/settings/tags?module=Solutions

Postman Collection Item JSON

{
  "name": "Solutions",
  "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 Solution\"\n        },\n        {\n            \"id\": \"{{tag_id}}\",\n            \"name\": \"Standard Solution\"\n        }\n    ]\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{api-domain}}/crm/v2.1/settings/tags?module=Solutions",
      "host": [
        "{{api-domain}}"
      ],
      "path": [
        "crm",
        "v2.1",
        "settings",
        "tags"
      ],
      "query": [
        {
          "key": "module",
          "value": "Solutions"
        }
      ]
    },
    "description": "To update tags."
  },
  "response": [
  ]
}