Chilkat Online Tools

Swift3 / Zoho CRM REST APIs / Purchase Orders

Back to Collection Items

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

    let http = CkoHttp()!
    var success: Bool

    // 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": "Standard Order"
    //     },
    //     {
    //       "id": "{{tag_id}}",
    //       "name": "Cash Orders"
    //     }
    //   ]
    // }

    let json = CkoJsonObject()!
    json.update("tags[0].id", value: "{{tag_id}}")
    json.update("tags[0].name", value: "Standard Order")
    json.update("tags[1].id", value: "{{tag_id}}")
    json.update("tags[1].name", value: "Cash Orders")

    // Adds the "Authorization: Bearer <access_token>" header.
    http.authToken = "<access_token>"

    let sbRequestBody = CkoStringBuilder()!
    json.emitSb(sbRequestBody)

    var resp: CkoHttpResponse? = http.pTextSb("PUT", url: "https://domain.com/crm/v2/settings/tags?module=Purchase_Orders", textData: sbRequestBody, charset: "utf-8", contentType: "application/json", md5: false, gzip: false)
    if http.lastMethodSuccess == false {
        print("\(http.lastErrorText!)")
        return
    }

    print("\(resp!.statusCode.intValue)")
    print("\(resp!.bodyStr!)")
    resp = nil

}

Curl Command

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

Postman Collection Item JSON

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