Chilkat Online Tools

PureBasic / Zoho CRM REST APIs / Contacts

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","Lead,Active")
    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/Contacts/actions/add_tags?ids={{record_id1,record_id2}}&tag_names=Passive Lead,Active

Postman Collection Item JSON

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