Chilkat Online Tools

unicodeC / Zoho CRM REST APIs / Contacts

Back to Collection Items

#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkStringBuilderW.h>
#include <C_CkHttpResponseW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkJsonObjectW json;
    HCkStringBuilderW sbRequestBody;
    HCkHttpResponseW resp;

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

    http = CkHttpW_Create();

    // Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    // The following JSON is sent in the request body.

    // {
    //   "data": [
    //     {
    //       "Owner": {
    //         "id": "{{user-id}}"
    //       },
    //       "Account_Name": {
    //         "id": "{{account-id}}"
    //       },
    //       "Vendor_Name": {
    //         "id": "{{vendor-id}}"
    //       },
    //       "Email": "newcrmapi@zoho.com",
    //       "Description": "Design your own layouts that align your business processes precisely. Assign them to profiles appropriately.",
    //       "Mailing_Zip": "Mailing_Zip",
    //       "Reports_To": "Reports_To",
    //       "Other_Phone": "988844559",
    //       "Mailing_State": "Mailing_State",
    //       "Twitter": "Twitter",
    //       "Other_Zip": "Other_Zip",
    //       "Mailing_Street": "Mailing_Street",
    //       "Other_State": "Other_State",
    //       "Salutation": "Mrs.",
    //       "Other_Country": "Other_Country",
    //       "First_Name": "First_Name",
    //       "Asst_Phone": "988844559",
    //       "Department": "Department",
    //       "Skype_ID": "Skype_ID",
    //       "Assistant": "Assistant",
    //       "Phone": "988844559",
    //       "Mailing_Country": "Mailing_Country",
    //       "Email_Opt_Out": true,
    //       "Date_of_Birth": "2018-01-25",
    //       "Mailing_City": "Mailing_City",
    //       "Other_City": "Other_City",
    //       "Title": "Title",
    //       "Other_Street": "Other_Street",
    //       "Mobile": "988844559",
    //       "Home_Phone": "988844559",
    //       "Last_Name": "Last_Name",
    //       "Lead_Source": "Cold Call",
    //       "Fax": "Fax",
    //       "Secondary_Email": "newcrmapi@zoho.com"
    //     }
    //   ]
    // }

    json = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(json,L"data[0].Owner.id",L"{{user-id}}");
    CkJsonObjectW_UpdateString(json,L"data[0].Account_Name.id",L"{{account-id}}");
    CkJsonObjectW_UpdateString(json,L"data[0].Vendor_Name.id",L"{{vendor-id}}");
    CkJsonObjectW_UpdateString(json,L"data[0].Email",L"newcrmapi@zoho.com");
    CkJsonObjectW_UpdateString(json,L"data[0].Description",L"Design your own layouts that align your business processes precisely. Assign them to profiles appropriately.");
    CkJsonObjectW_UpdateString(json,L"data[0].Mailing_Zip",L"Mailing_Zip");
    CkJsonObjectW_UpdateString(json,L"data[0].Reports_To",L"Reports_To");
    CkJsonObjectW_UpdateString(json,L"data[0].Other_Phone",L"988844559");
    CkJsonObjectW_UpdateString(json,L"data[0].Mailing_State",L"Mailing_State");
    CkJsonObjectW_UpdateString(json,L"data[0].Twitter",L"Twitter");
    CkJsonObjectW_UpdateString(json,L"data[0].Other_Zip",L"Other_Zip");
    CkJsonObjectW_UpdateString(json,L"data[0].Mailing_Street",L"Mailing_Street");
    CkJsonObjectW_UpdateString(json,L"data[0].Other_State",L"Other_State");
    CkJsonObjectW_UpdateString(json,L"data[0].Salutation",L"Mrs.");
    CkJsonObjectW_UpdateString(json,L"data[0].Other_Country",L"Other_Country");
    CkJsonObjectW_UpdateString(json,L"data[0].First_Name",L"First_Name");
    CkJsonObjectW_UpdateString(json,L"data[0].Asst_Phone",L"988844559");
    CkJsonObjectW_UpdateString(json,L"data[0].Department",L"Department");
    CkJsonObjectW_UpdateString(json,L"data[0].Skype_ID",L"Skype_ID");
    CkJsonObjectW_UpdateString(json,L"data[0].Assistant",L"Assistant");
    CkJsonObjectW_UpdateString(json,L"data[0].Phone",L"988844559");
    CkJsonObjectW_UpdateString(json,L"data[0].Mailing_Country",L"Mailing_Country");
    CkJsonObjectW_UpdateBool(json,L"data[0].Email_Opt_Out",TRUE);
    CkJsonObjectW_UpdateString(json,L"data[0].Date_of_Birth",L"2018-01-25");
    CkJsonObjectW_UpdateString(json,L"data[0].Mailing_City",L"Mailing_City");
    CkJsonObjectW_UpdateString(json,L"data[0].Other_City",L"Other_City");
    CkJsonObjectW_UpdateString(json,L"data[0].Title",L"Title");
    CkJsonObjectW_UpdateString(json,L"data[0].Other_Street",L"Other_Street");
    CkJsonObjectW_UpdateString(json,L"data[0].Mobile",L"988844559");
    CkJsonObjectW_UpdateString(json,L"data[0].Home_Phone",L"988844559");
    CkJsonObjectW_UpdateString(json,L"data[0].Last_Name",L"Last_Name");
    CkJsonObjectW_UpdateString(json,L"data[0].Lead_Source",L"Cold Call");
    CkJsonObjectW_UpdateString(json,L"data[0].Fax",L"Fax");
    CkJsonObjectW_UpdateString(json,L"data[0].Secondary_Email",L"newcrmapi@zoho.com");

    CkHttpW_SetRequestHeader(http,L"Authorization",L"{{authorization-token}}");
    CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");

    sbRequestBody = CkStringBuilderW_Create();
    CkJsonObjectW_EmitSb(json,sbRequestBody);

    resp = CkHttpW_PTextSb(http,L"PUT",L"https://domain.com/crm/v2/Contacts/{{record-id}}",sbRequestBody,L"utf-8",L"application/json",FALSE,FALSE);
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(json);
        CkStringBuilderW_Dispose(sbRequestBody);
        return;
    }

    wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
    wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
    CkHttpResponseW_Dispose(resp);


    CkHttpW_Dispose(http);
    CkJsonObjectW_Dispose(json);
    CkStringBuilderW_Dispose(sbRequestBody);

    }

Curl Command

curl -X PUT
	-H "Authorization: Bearer <access_token>"
	-H "Authorization: {{authorization-token}}"
	-H "Content-Type: application/json"
	-d '{
	"data": [
		{
			"Owner": {
				"id": "{{user-id}}"
			},
			"Account_Name": {
				"id": "{{account-id}}"
			},
			"Vendor_Name": {
				"id": "{{vendor-id}}"
			},
			"Email": "newcrmapi@zoho.com",
			"Description": "Design your own layouts that align your business processes precisely. Assign them to profiles appropriately.",
			"Mailing_Zip": "Mailing_Zip",
			"Reports_To": "Reports_To",
			"Other_Phone": "988844559",
			"Mailing_State": "Mailing_State",
			"Twitter": "Twitter",
			"Other_Zip": "Other_Zip",
			"Mailing_Street": "Mailing_Street",
			"Other_State": "Other_State",
			"Salutation": "Mrs.",
			"Other_Country": "Other_Country",
			"First_Name": "First_Name",
			"Asst_Phone": "988844559",
			"Department": "Department",
			"Skype_ID": "Skype_ID",
			"Assistant": "Assistant",
			"Phone": "988844559",
			"Mailing_Country": "Mailing_Country",
			"Email_Opt_Out": true,
			"Date_of_Birth": "2018-01-25",
			"Mailing_City": "Mailing_City",
			"Other_City": "Other_City",
			"Title": "Title",
			"Other_Street": "Other_Street",
			"Mobile": "988844559",
			"Home_Phone": "988844559",
			"Last_Name": "Last_Name",
			"Lead_Source": "Cold Call",
			"Fax": "Fax",
			"Secondary_Email": "newcrmapi@zoho.com"
		}
	]
}'
https://domain.com/crm/v2/Contacts/{{record-id}}

Postman Collection Item JSON

{
  "name": "Contacts",
  "request": {
    "method": "PUT",
    "header": [
      {
        "key": "Authorization",
        "value": "{{authorization-token}}"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n\t\"data\": [\n\t\t{\n\t\t\t\"Owner\": {\n\t\t\t\t\"id\": \"{{user-id}}\"\n\t\t\t},\n\t\t\t\"Account_Name\": {\n\t\t\t\t\"id\": \"{{account-id}}\"\n\t\t\t},\n\t\t\t\"Vendor_Name\": {\n\t\t\t\t\"id\": \"{{vendor-id}}\"\n\t\t\t},\n\t\t\t\"Email\": \"newcrmapi@zoho.com\",\n\t\t\t\"Description\": \"Design your own layouts that align your business processes precisely. Assign them to profiles appropriately.\",\n\t\t\t\"Mailing_Zip\": \"Mailing_Zip\",\n\t\t\t\"Reports_To\": \"Reports_To\",\n\t\t\t\"Other_Phone\": \"988844559\",\n\t\t\t\"Mailing_State\": \"Mailing_State\",\n\t\t\t\"Twitter\": \"Twitter\",\n\t\t\t\"Other_Zip\": \"Other_Zip\",\n\t\t\t\"Mailing_Street\": \"Mailing_Street\",\n\t\t\t\"Other_State\": \"Other_State\",\n\t\t\t\"Salutation\": \"Mrs.\",\n\t\t\t\"Other_Country\": \"Other_Country\",\n\t\t\t\"First_Name\": \"First_Name\",\n\t\t\t\"Asst_Phone\": \"988844559\",\n\t\t\t\"Department\": \"Department\",\n\t\t\t\"Skype_ID\": \"Skype_ID\",\n\t\t\t\"Assistant\": \"Assistant\",\n\t\t\t\"Phone\": \"988844559\",\n\t\t\t\"Mailing_Country\": \"Mailing_Country\",\n\t\t\t\"Email_Opt_Out\": true,\n\t\t\t\"Date_of_Birth\": \"2018-01-25\",\n\t\t\t\"Mailing_City\": \"Mailing_City\",\n\t\t\t\"Other_City\": \"Other_City\",\n\t\t\t\"Title\": \"Title\",\n\t\t\t\"Other_Street\": \"Other_Street\",\n\t\t\t\"Mobile\": \"988844559\",\n\t\t\t\"Home_Phone\": \"988844559\",\n\t\t\t\"Last_Name\": \"Last_Name\",\n\t\t\t\"Lead_Source\": \"Cold Call\",\n\t\t\t\"Fax\": \"Fax\",\n\t\t\t\"Secondary_Email\": \"newcrmapi@zoho.com\"\n\t\t}\n\t]\n}"
    },
    "url": {
      "raw": "{{api-domain}}/crm/v2/Contacts/{{record-id}}",
      "host": [
        "{{api-domain}}"
      ],
      "path": [
        "crm",
        "v2",
        "Contacts",
        "{{record-id}}"
      ]
    },
    "description": "To update existing entities in the module."
  },
  "response": [
  ]
}