Chilkat Online Tools

Go / Zoho CRM REST APIs / Purchase Orders

Back to Collection Items

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

    http := chilkat.NewHttp()
    var success bool

    // Adds the "Authorization: Bearer <access_token>" header.
    http.SetAuthToken("<access_token>")

    resp := http.QuickRequest("POST","Order,")
    if http.LastMethodSuccess() == false {
        fmt.Println(http.LastErrorText())
        http.DisposeHttp()
        return
    }

    fmt.Println(resp.StatusCode())
    fmt.Println(resp.BodyStr())
    resp.DisposeHttpResponse()

    http.DisposeHttp()

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2/Purchase_Orders/actions/remove_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/remove_tags?ids={{record_id1,record_id2,..}}&tag_names=Standard Order,",
      "host": [
        "{{api-domain}}"
      ],
      "path": [
        "crm",
        "v2",
        "Purchase_Orders",
        "actions",
        "remove_tags"
      ],
      "query": [
        {
          "key": "ids",
          "value": "{{record_id1,record_id2,..}}"
        },
        {
          "key": "tag_names",
          "value": "Standard Order,"
        }
      ]
    },
    "description": "To add tags to records."
  },
  "response": [
  ]
}