Chilkat Online Tools

PureBasic / Zoho CRM REST APIs / Custom

Back to Collection Items

IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"

Procedure ChilkatExample()

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

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

    ; Adds the "Authorization: Bearer <access_token>" header.
    CkHttp::setCkAuthToken(http, "<access_token>")

    resp.i = CkHttp::ckQuickRequest(http,"POST","https://domain.com/crm/v2/{{custom_module_api_name}}/actions/remove_tags?ids={{record_id1,record_id2,.&tag_names=Default")
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        ProcedureReturn
    EndIf

    Debug Str(CkHttpResponse::ckStatusCode(resp))
    Debug CkHttpResponse::ckBodyStr(resp)
    CkHttpResponse::ckDispose(resp)



    CkHttp::ckDispose(http)


    ProcedureReturn
EndProcedure

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2/{{custom_module_api_name}}/actions/remove_tags?ids={{record_id1,record_id2,..}}&tag_names=Default

Postman Collection Item JSON

{
  "name": "Custom",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{access-token}}",
          "type": "string"
        }
      ]
    },
    "method": "POST",
    "header": [
    ],
    "url": {
      "raw": "{{api-domain}}/crm/v2/{{custom_module_api_name}}/actions/remove_tags?ids={{record_id1,record_id2,..}}&tag_names=Default",
      "host": [
        "{{api-domain}}"
      ],
      "path": [
        "crm",
        "v2",
        "{{custom_module_api_name}}",
        "actions",
        "remove_tags"
      ],
      "query": [
        {
          "key": "ids",
          "value": "{{record_id1,record_id2,..}}"
        },
        {
          "key": "tag_names",
          "value": "Default"
        }
      ]
    },
    "description": "To add tags to records."
  },
  "response": [
  ]
}