Chilkat Online Tools

unicodeCpp / Zoho CRM REST APIs / Deals

Back to Collection Items

#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkStringBuilderW.h>
#include <CkHttpResponseW.h>

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

    CkHttpW http;
    bool success;

    // 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": "Cold Deal"
    //     },
    //     {
    //       "id": "{{tag_id}}",
    //       "name": "Active Deal"
    //     }
    //   ]
    // }

    CkJsonObjectW json;
    json.UpdateString(L"tags[0].id",L"{{tag_id}}");
    json.UpdateString(L"tags[0].name",L"Cold Deal");
    json.UpdateString(L"tags[1].id",L"{{tag_id}}");
    json.UpdateString(L"tags[1].name",L"Active Deal");

    // Adds the "Authorization: Bearer <access_token>" header.
    http.put_AuthToken(L"<access_token>");

    CkStringBuilderW sbRequestBody;
    json.EmitSb(sbRequestBody);

    CkHttpResponseW *resp = http.PTextSb(L"PUT",L"https://domain.com/crm/v2/settings/tags?module=Deals",sbRequestBody,L"utf-8",L"application/json",false,false);
    if (http.get_LastMethodSuccess() == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    wprintf(L"%d\n",resp->get_StatusCode());
    wprintf(L"%s\n",resp->bodyStr());
    delete resp;
    }

Curl Command

curl -X PUT
	-H "Authorization: Bearer <access_token>"
	-d '{
    "tags": [
        {
            "id": "{{tag_id}}",
            "name": "Cold Deal"
        },
        {
            "id": "{{tag_id}}",
            "name": "Active Deal"
        }
    ]
}'
https://domain.com/crm/v2/settings/tags?module=Deals

Postman Collection Item JSON

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