Chilkat Online Tools

Foxpro / Zoho CRM REST APIs / Purchase Orders

Back to Collection Items

LOCAL loHttp
LOCAL lnSuccess
LOCAL loResp

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

* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Http')
loHttp = CreateObject('Chilkat.Http')

* Adds the "Authorization: Bearer <access_token>" header.
loHttp.AuthToken = "<access_token>"

loResp = loHttp.QuickRequest("POST","Order,")
IF (loHttp.LastMethodSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    CANCEL
ENDIF

? STR(loResp.StatusCode)
? loResp.BodyStr
RELEASE loResp

RELEASE loHttp

Curl Command

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

Postman Collection Item JSON

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