Chilkat Online Tools

unicodeCpp / Zoho CRM REST APIs / Leads

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.

    // {
    //   "data": [
    //     {
    //       "Owner": {
    //         "id": "{{user-id}}"
    //       },
    //       "Last_Name": "Last_Name",
    //       "Email": "newcrmapi@zoho.com",
    //       "Description": "Design your own layouts that align your business processes precisely. Assign them to profiles appropriately.",
    //       "Rating": "Acquired",
    //       "Website": "crm.zoho.com",
    //       "Twitter": "Twitter",
    //       "Salutation": "Mr.",
    //       "First_Name": "First_Name",
    //       "Lead_Status": "Attempted to Contact",
    //       "Industry": "ASP",
    //       "Skype_ID": "Skype_ID",
    //       "Phone": "98883434559",
    //       "Street": "Street",
    //       "Zip_Code": "Zip_Code",
    //       "Email_Opt_Out": false,
    //       "Designation": "Designation",
    //       "City": "City",
    //       "No_of_Employees": 1791,
    //       "Mobile": "98883434559",
    //       "State": "State",
    //       "Lead_Source": "Advertisement",
    //       "Country": "Country",
    //       "Fax": "Fax",
    //       "Annual_Revenue": 136.67,
    //       "Secondary_Email": "newcrmapi@zoho.com"
    //     }
    //   ]
    // }

    CkJsonObjectW json;
    json.UpdateString(L"data[0].Owner.id",L"{{user-id}}");
    json.UpdateString(L"data[0].Last_Name",L"Last_Name");
    json.UpdateString(L"data[0].Email",L"newcrmapi@zoho.com");
    json.UpdateString(L"data[0].Description",L"Design your own layouts that align your business processes precisely. Assign them to profiles appropriately.");
    json.UpdateString(L"data[0].Rating",L"Acquired");
    json.UpdateString(L"data[0].Website",L"crm.zoho.com");
    json.UpdateString(L"data[0].Twitter",L"Twitter");
    json.UpdateString(L"data[0].Salutation",L"Mr.");
    json.UpdateString(L"data[0].First_Name",L"First_Name");
    json.UpdateString(L"data[0].Lead_Status",L"Attempted to Contact");
    json.UpdateString(L"data[0].Industry",L"ASP");
    json.UpdateString(L"data[0].Skype_ID",L"Skype_ID");
    json.UpdateString(L"data[0].Phone",L"98883434559");
    json.UpdateString(L"data[0].Street",L"Street");
    json.UpdateString(L"data[0].Zip_Code",L"Zip_Code");
    json.UpdateBool(L"data[0].Email_Opt_Out",false);
    json.UpdateString(L"data[0].Designation",L"Designation");
    json.UpdateString(L"data[0].City",L"City");
    json.UpdateInt(L"data[0].No_of_Employees",1791);
    json.UpdateString(L"data[0].Mobile",L"98883434559");
    json.UpdateString(L"data[0].State",L"State");
    json.UpdateString(L"data[0].Lead_Source",L"Advertisement");
    json.UpdateString(L"data[0].Country",L"Country");
    json.UpdateString(L"data[0].Fax",L"Fax");
    json.UpdateNumber(L"data[0].Annual_Revenue",L"136.67");
    json.UpdateString(L"data[0].Secondary_Email",L"newcrmapi@zoho.com");

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

    CkStringBuilderW sbRequestBody;
    json.EmitSb(sbRequestBody);

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

    CkStringBuilderW sbResponseBody;
    resp->GetBodySb(sbResponseBody);

    CkJsonObjectW jResp;
    jResp.LoadSb(sbResponseBody);
    jResp.put_EmitCompact(false);

    wprintf(L"Response Body:\n");
    wprintf(L"%s\n",jResp.emit());

    int respStatusCode = resp->get_StatusCode();
    wprintf(L"Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",resp->header());
        wprintf(L"Failed.\n");
        delete resp;
        return;
    }

    delete resp;

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "data": [
    //     {
    //       "code": "SUCCESS",
    //       "details": {
    //         "Modified_Time": "2021-05-05T07:15:00+00:00",
    //         "Modified_By": {
    //           "name": "Patricia",
    //           "id": "738964000000291009"
    //         },
    //         "Created_Time": "2021-05-05T06:53:44+00:00",
    //         "id": "738964000002118055",
    //         "Created_By": {
    //           "name": "Patricia",
    //           "id": "738964000000291009"
    //         }
    //       },
    //       "message": "record updated",
    //       "status": "success"
    //     }
    //   ]
    // }

    // Sample code for parsing the JSON response...
    // Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.

    const wchar_t *code = 0;
    const wchar_t *Modified_Time = 0;
    const wchar_t *Name = 0;
    const wchar_t *Id = 0;
    const wchar_t *Created_Time = 0;
    const wchar_t *detailsId = 0;
    const wchar_t *Created_ByName = 0;
    const wchar_t *Created_ById = 0;
    const wchar_t *message = 0;
    const wchar_t *status = 0;

    int i = 0;
    int count_i = jResp.SizeOfArray(L"data");
    while (i < count_i) {
        jResp.put_I(i);
        code = jResp.stringOf(L"data[i].code");
        Modified_Time = jResp.stringOf(L"data[i].details.Modified_Time");
        Name = jResp.stringOf(L"data[i].details.Modified_By.name");
        Id = jResp.stringOf(L"data[i].details.Modified_By.id");
        Created_Time = jResp.stringOf(L"data[i].details.Created_Time");
        detailsId = jResp.stringOf(L"data[i].details.id");
        Created_ByName = jResp.stringOf(L"data[i].details.Created_By.name");
        Created_ById = jResp.stringOf(L"data[i].details.Created_By.id");
        message = jResp.stringOf(L"data[i].message");
        status = jResp.stringOf(L"data[i].status");
        i = i + 1;
    }
    }

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}}"
			},
			"Last_Name": "Last_Name",
			"Email": "newcrmapi@zoho.com",
			"Description": "Design your own layouts that align your business processes precisely. Assign them to profiles appropriately.",
			"Rating": "Acquired",
			"Website": "crm.zoho.com",
			"Twitter": "Twitter",
			"Salutation": "Mr.",
			"First_Name": "First_Name",
			"Lead_Status": "Attempted to Contact",
			"Industry": "ASP",
			"Skype_ID": "Skype_ID",
			"Phone": "98883434559",
			"Street": "Street",
			"Zip_Code": "Zip_Code",
			"Email_Opt_Out": false,
			"Designation": "Designation",
			"City": "City",
			"No_of_Employees": 1791,
			"Mobile": "98883434559",
			"State": "State",
			"Lead_Source": "Advertisement",
			"Country": "Country",
			"Fax": "Fax",
			"Annual_Revenue": 136.67,
			"Secondary_Email": "newcrmapi@zoho.com"
		}
	]
}'
https://domain.com/crm/v2.1/Leads/{{record-id}}

Postman Collection Item JSON

{
  "name": "Leads",
  "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\"Last_Name\": \"Last_Name\",\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\"Rating\": \"Acquired\",\n\t\t\t\"Website\": \"crm.zoho.com\",\n\t\t\t\"Twitter\": \"Twitter\",\n\t\t\t\"Salutation\": \"Mr.\",\n\t\t\t\"First_Name\": \"First_Name\",\n\t\t\t\"Lead_Status\": \"Attempted to Contact\",\n\t\t\t\"Industry\": \"ASP\",\n\t\t\t\"Skype_ID\": \"Skype_ID\",\n\t\t\t\"Phone\": \"98883434559\",\n\t\t\t\"Street\": \"Street\",\n\t\t\t\"Zip_Code\": \"Zip_Code\",\n\t\t\t\"Email_Opt_Out\": false,\n\t\t\t\"Designation\": \"Designation\",\n\t\t\t\"City\": \"City\",\n\t\t\t\"No_of_Employees\": 1791,\n\t\t\t\"Mobile\": \"98883434559\",\n\t\t\t\"State\": \"State\",\n\t\t\t\"Lead_Source\": \"Advertisement\",\n\t\t\t\"Country\": \"Country\",\n\t\t\t\"Fax\": \"Fax\",\n\t\t\t\"Annual_Revenue\": 136.67,\n\t\t\t\"Secondary_Email\": \"newcrmapi@zoho.com\"\n\t\t}\n\t]\n}"
    },
    "url": {
      "raw": "{{api-domain}}/crm/v2.1/Leads/{{record-id}}",
      "host": [
        "{{api-domain}}"
      ],
      "path": [
        "crm",
        "v2.1",
        "Leads",
        "{{record-id}}"
      ]
    },
    "description": "To update existing entities in the module."
  },
  "response": [
    {
      "name": "SUCCESS RESPONSE",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Last_Name\": \"Last_Name\",\n            \"Email\": \"newcrmapi@zoho.com\",\n            \"Description\": \"Design your own layouts that align your business processes precisely. Assign them to profiles appropriately.\",\n            \"Rating\": \"Acquired\",\n            \"Website\": \"crm.zoho.com\",\n            \"Twitter\": \"Twitter\",\n            \"Salutation\": \"Mr.\",\n            \"First_Name\": \"First_Name\",\n            \"Lead_Status\": \"Attempted to Contact\",\n            \"Industry\": \"ASP\",\n            \"Skype_ID\": \"Skype_ID\",\n            \"Phone\": \"98883434559\",\n            \"Street\": \"Street\",\n            \"Zip_Code\": \"Zip_Code\",\n            \"Email_Opt_Out\": false,\n            \"Designation\": \"Designation\",\n            \"City\": \"City\",\n            \"No_of_Employees\": 1791,\n            \"Mobile\": \"98883434559\",\n            \"State\": \"State\",\n            \"Lead_Source\": \"Advertisement\",\n            \"Country\": \"Country\",\n            \"Fax\": \"Fax\",\n            \"Annual_Revenue\": 136.67,\n            \"Secondary_Email\": \"newcrmapi@zoho.com\"\n        }\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads/738964000002118055",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads",
            "738964000002118055"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Wed, 05 May 2021 07:14:55 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "325"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "Pragma",
          "value": "no-cache"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache"
        },
        {
          "key": "Expires",
          "value": "Thu, 01 Jan 1970 00:00:00 GMT"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-ACCESSTOKEN-RESET",
          "value": "2021-05-05T07:39:40+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4009533"
        },
        {
          "key": "clientsubVersion",
          "value": "cfa914635a0a376a1322139140e8bf37"
        },
        {
          "key": "Content-Disposition",
          "value": "attachment; filename=response.json"
        },
        {
          "key": "Content-Language",
          "value": "en-US"
        },
        {
          "key": "Strict-Transport-Security",
          "value": "max-age=15768000"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"data\": [\n        {\n            \"code\": \"SUCCESS\",\n            \"details\": {\n                \"Modified_Time\": \"2021-05-05T07:15:00+00:00\",\n                \"Modified_By\": {\n                    \"name\": \"Patricia\",\n                    \"id\": \"738964000000291009\"\n                },\n                \"Created_Time\": \"2021-05-05T06:53:44+00:00\",\n                \"id\": \"738964000002118055\",\n                \"Created_By\": {\n                    \"name\": \"Patricia\",\n                    \"id\": \"738964000000291009\"\n                }\n            },\n            \"message\": \"record updated\",\n            \"status\": \"success\"\n        }\n    ]\n}"
    },
    {
      "name": "INVALID_MODULE",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Last_Name\": \"Last_Name\",\n            \"Email\": \"newcrmapi@zoho.com\",\n            \"Description\": \"Design your own layouts that align your business processes precisely. Assign them to profiles appropriately.\",\n            \"Rating\": \"Acquired\",\n            \"Website\": \"crm.zoho.com\",\n            \"Twitter\": \"Twitter\",\n            \"Salutation\": \"Mr.\",\n            \"First_Name\": \"First_Name\",\n            \"Lead_Status\": \"Attempted to Contact\",\n            \"Industry\": \"ASP\",\n            \"Skype_ID\": \"Skype_ID\",\n            \"Phone\": \"98883434559\",\n            \"Street\": \"Street\",\n            \"Zip_Code\": \"Zip_Code\",\n            \"Email_Opt_Out\": false,\n            \"Designation\": \"Designation\",\n            \"City\": \"City\",\n            \"No_of_Employees\": 1791,\n            \"Mobile\": \"98883434559\",\n            \"State\": \"State\",\n            \"Lead_Source\": \"Advertisement\",\n            \"Country\": \"Country\",\n            \"Fax\": \"Fax\",\n            \"Annual_Revenue\": 136.67,\n            \"Secondary_Email\": \"newcrmapi@zoho.com\"\n        }\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Lead/738964000002118055",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Lead",
            "738964000002118055"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Wed, 05 May 2021 07:15:20 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "133"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "Pragma",
          "value": "no-cache"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache"
        },
        {
          "key": "Expires",
          "value": "Thu, 01 Jan 1970 00:00:00 GMT"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-ACCESSTOKEN-RESET",
          "value": "2021-05-05T07:39:40+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4009533"
        },
        {
          "key": "clientsubVersion",
          "value": "cfa914635a0a376a1322139140e8bf37"
        },
        {
          "key": "Content-Disposition",
          "value": "attachment; filename=response.json"
        },
        {
          "key": "X-Download-Options",
          "value": "noopen"
        },
        {
          "key": "Content-Language",
          "value": "en-US"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"code\": \"INVALID_MODULE\",\n    \"details\": {\n        \"resource_path_index\": 0\n    },\n    \"message\": \"the module name given seems to be invalid\",\n    \"status\": \"error\"\n}"
    },
    {
      "name": "INVALID_DATA",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Last_Name\": 1234,\n            \"Email\": \"newcrmapi@zoho.com\",\n            \"Description\": \"Design your own layouts that align your business processes precisely. Assign them to profiles appropriately.\",\n            \"Rating\": \"Acquired\",\n            \"Website\": \"crm.zoho.com\",\n            \"Twitter\": \"Twitter\",\n            \"Salutation\": \"Mr.\",\n            \"First_Name\": \"First_Name\",\n            \"Lead_Status\": \"Attempted to Contact\",\n            \"Industry\": \"ASP\",\n            \"Skype_ID\": \"Skype_ID\",\n            \"Phone\": \"98883434559\",\n            \"Street\": \"Street\",\n            \"Zip_Code\": \"Zip_Code\",\n            \"Email_Opt_Out\": false,\n            \"Designation\": \"Designation\",\n            \"City\": \"City\",\n            \"No_of_Employees\": 1791,\n            \"Mobile\": \"98883434559\",\n            \"State\": \"State\",\n            \"Lead_Source\": \"Advertisement\",\n            \"Country\": \"Country\",\n            \"Fax\": \"Fax\",\n            \"Annual_Revenue\": 136.67,\n            \"Secondary_Email\": \"newcrmapi@zoho.com\"\n        }\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads/738964000002118055",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads",
            "738964000002118055"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Wed, 05 May 2021 07:15:56 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "173"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "Pragma",
          "value": "no-cache"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache"
        },
        {
          "key": "Expires",
          "value": "Thu, 01 Jan 1970 00:00:00 GMT"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-ACCESSTOKEN-RESET",
          "value": "2021-05-05T07:39:40+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4009533"
        },
        {
          "key": "clientsubVersion",
          "value": "cfa914635a0a376a1322139140e8bf37"
        },
        {
          "key": "Content-Disposition",
          "value": "attachment; filename=response.json"
        },
        {
          "key": "Content-Language",
          "value": "en-US"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"data\": [\n        {\n            \"code\": \"INVALID_DATA\",\n            \"details\": {\n                \"expected_data_type\": \"text\",\n                \"api_name\": \"Last_Name\",\n                \"json_path\": \"$.data[0].Last_Name\"\n            },\n            \"message\": \"invalid data\",\n            \"status\": \"error\"\n        }\n    ]\n}"
    },
    {
      "name": "MANDATORY_NOT_FOUND",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Last_Name\": 1234,\n            \"Email\": \"newcrmapi@zoho.com\",\n            \"Description\": \"Design your own layouts that align your business processes precisely. Assign them to profiles appropriately.\",\n            \"Rating\": \"Acquired\",\n            \"Website\": \"crm.zoho.com\",\n            \"Twitter\": \"Twitter\",\n            \"Salutation\": \"Mr.\",\n            \"First_Name\": \"First_Name\",\n            \"Lead_Status\": \"Attempted to Contact\",\n            \"Industry\": \"ASP\",\n            \"Skype_ID\": \"Skype_ID\",\n            \"Phone\": \"98883434559\",\n            \"Street\": \"Street\",\n            \"Zip_Code\": \"Zip_Code\",\n            \"Email_Opt_Out\": false,\n            \"Designation\": \"Designation\",\n            \"City\": \"City\",\n            \"No_of_Employees\": 1791,\n            \"Mobile\": \"98883434559\",\n            \"State\": \"State\",\n            \"Lead_Source\": \"Advertisement\",\n            \"Country\": \"Country\",\n            \"Fax\": \"Fax\",\n            \"Annual_Revenue\": 136.67,\n            \"Secondary_Email\": \"newcrmapi@zoho.com\"\n        }\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Wed, 05 May 2021 07:16:16 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "150"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "Pragma",
          "value": "no-cache"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache"
        },
        {
          "key": "Expires",
          "value": "Thu, 01 Jan 1970 00:00:00 GMT"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-ACCESSTOKEN-RESET",
          "value": "2021-05-05T07:39:40+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4009533"
        },
        {
          "key": "clientsubVersion",
          "value": "cfa914635a0a376a1322139140e8bf37"
        },
        {
          "key": "Content-Disposition",
          "value": "attachment; filename=response.json"
        },
        {
          "key": "Content-Language",
          "value": "en-US"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"data\": [\n        {\n            \"code\": \"MANDATORY_NOT_FOUND\",\n            \"details\": {\n                \"api_name\": \"id\",\n                \"json_path\": \"$.data[0].id\"\n            },\n            \"message\": \"required field not found\",\n            \"status\": \"error\"\n        }\n    ]\n}"
    },
    {
      "name": "INVALID_REQUEST_METHOD",
      "originalRequest": {
        "method": "COPY",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Last_Name\": \"Patricia Boyle\",\n            \"Email\": \"newcrmapi@zoho.com\",\n            \"Description\": \"Design your own layouts that align your business processes precisely. Assign them to profiles appropriately.\",\n            \"Rating\": \"Acquired\",\n            \"Website\": \"crm.zoho.com\",\n            \"Twitter\": \"Twitter\",\n            \"Salutation\": \"Mr.\",\n            \"First_Name\": \"First_Name\",\n            \"Lead_Status\": \"Attempted to Contact\",\n            \"Industry\": \"ASP\",\n            \"Skype_ID\": \"Skype_ID\",\n            \"Phone\": \"98883434559\",\n            \"Street\": \"Street\",\n            \"Zip_Code\": \"Zip_Code\",\n            \"Email_Opt_Out\": false,\n            \"Designation\": \"Designation\",\n            \"City\": \"City\",\n            \"No_of_Employees\": 1791,\n            \"Mobile\": \"98883434559\",\n            \"State\": \"State\",\n            \"Lead_Source\": \"Advertisement\",\n            \"Country\": \"Country\",\n            \"Fax\": \"Fax\",\n            \"Annual_Revenue\": 136.67,\n            \"Secondary_Email\": \"newcrmapi@zoho.com\"\n        }\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads/738964000002118055",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads",
            "738964000002118055"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Wed, 05 May 2021 07:17:18 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "124"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "X-Frame-Options",
          "value": "deny"
        },
        {
          "key": "X-Download-Options",
          "value": "noopen"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"code\": \"INVALID_REQUEST_METHOD\",\n    \"details\": {},\n    \"message\": \"The http request method type is not a valid one\",\n    \"status\": \"error\"\n}"
    },
    {
      "name": "DUPLICATE_DATA",
      "originalRequest": {
        "method": "PUT",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Last_Name\": \"Patricia Boyle\",\n            \"Email\": \"newcrmapi@zoho.com\",\n            \"Description\": \"Design your own layouts that align your business processes precisely. Assign them to profiles appropriately.\",\n            \"Rating\": \"Acquired\",\n            \"Website\": \"crm.zoho.com\",\n            \"Twitter\": \"Twitter\",\n            \"Salutation\": \"Mr.\",\n            \"First_Name\": \"First_Name\",\n            \"Lead_Status\": \"Attempted to Contact\",\n            \"Industry\": \"ASP\",\n            \"Skype_ID\": \"Skype_ID\",\n            \"Phone\": \"989898989898\",\n            \"Street\": \"Street\",\n            \"Zip_Code\": \"Zip_Code\",\n            \"Email_Opt_Out\": false,\n            \"Designation\": \"Designation\",\n            \"City\": \"City\",\n            \"No_of_Employees\": 1791,\n            \"Mobile\": \"989898989898\",\n            \"State\": \"State\",\n            \"Lead_Source\": \"Advertisement\",\n            \"Country\": \"Country\",\n            \"Fax\": \"Fax\",\n            \"Annual_Revenue\": 136.67,\n            \"Secondary_Email\": \"newcrmapi@zoho.com\"\n        }\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads/738964000002118044",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads",
            "738964000002118044"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Wed, 05 May 2021 07:18:35 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "169"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "Pragma",
          "value": "no-cache"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache"
        },
        {
          "key": "Expires",
          "value": "Thu, 01 Jan 1970 00:00:00 GMT"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-ACCESSTOKEN-RESET",
          "value": "2021-05-05T07:39:40+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4009533"
        },
        {
          "key": "clientsubVersion",
          "value": "cfa914635a0a376a1322139140e8bf37"
        },
        {
          "key": "Content-Disposition",
          "value": "attachment; filename=response.json"
        },
        {
          "key": "Content-Language",
          "value": "en-US"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"data\": [\n        {\n            \"code\": \"DUPLICATE_DATA\",\n            \"details\": {\n                \"api_name\": \"Mobile\",\n                \"json_path\": \"$.data[0].Mobile\",\n                \"id\": \"738964000002118055\"\n            },\n            \"message\": \"duplicate data\",\n            \"status\": \"error\"\n        }\n    ]\n}"
    },
    {
      "name": "OAUTH_SCOPE_MISMATCH",
      "originalRequest": {
        "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\"Last_Name\": \"Last_Name\",\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\"Rating\": \"Acquired\",\n\t\t\t\"Website\": \"crm.zoho.com\",\n\t\t\t\"Twitter\": \"Twitter\",\n\t\t\t\"Salutation\": \"Mr.\",\n\t\t\t\"First_Name\": \"First_Name\",\n\t\t\t\"Lead_Status\": \"Attempted to Contact\",\n\t\t\t\"Industry\": \"ASP\",\n\t\t\t\"Skype_ID\": \"Skype_ID\",\n\t\t\t\"Phone\": \"98883434559\",\n\t\t\t\"Street\": \"Street\",\n\t\t\t\"Zip_Code\": \"Zip_Code\",\n\t\t\t\"Email_Opt_Out\": false,\n\t\t\t\"Designation\": \"Designation\",\n\t\t\t\"City\": \"City\",\n\t\t\t\"No_of_Employees\": 1791,\n\t\t\t\"Mobile\": \"98883434559\",\n\t\t\t\"State\": \"State\",\n\t\t\t\"Lead_Source\": \"Advertisement\",\n\t\t\t\"Country\": \"Country\",\n\t\t\t\"Fax\": \"Fax\",\n\t\t\t\"Annual_Revenue\": 136.67,\n\t\t\t\"Secondary_Email\": \"newcrmapi@zoho.com\"\n\t\t}\n\t]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads/{{record-id}}",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads",
            "{{record-id}}"
          ]
        }
      },
      "status": "Unauthorized",
      "code": 401,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Wed, 05 May 2021 07:32:24 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "113"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "Pragma",
          "value": "no-cache"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache"
        },
        {
          "key": "Expires",
          "value": "Thu, 01 Jan 1970 00:00:00 GMT"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-Download-Options",
          "value": "noopen"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"code\": \"OAUTH_SCOPE_MISMATCH\",\n    \"details\": {},\n    \"message\": \"invalid oauth scope to access this URL\",\n    \"status\": \"error\"\n}"
    },
    {
      "name": "NOT_APPROVED",
      "originalRequest": {
        "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\"Last_Name\": \"Last_Name\",\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\"Rating\": \"Acquired\",\n\t\t\t\"Website\": \"crm.zoho.com\",\n\t\t\t\"Twitter\": \"Twitter\",\n\t\t\t\"Salutation\": \"Mr.\",\n\t\t\t\"First_Name\": \"First_Name\",\n\t\t\t\"Lead_Status\": \"Attempted to Contact\",\n\t\t\t\"Industry\": \"ASP\",\n\t\t\t\"Skype_ID\": \"Skype_ID\",\n\t\t\t\"Phone\": \"98883434559\",\n\t\t\t\"Street\": \"Street\",\n\t\t\t\"Zip_Code\": \"Zip_Code\",\n\t\t\t\"Email_Opt_Out\": false,\n\t\t\t\"Designation\": \"Designation\",\n\t\t\t\"City\": \"City\",\n\t\t\t\"No_of_Employees\": 1791,\n\t\t\t\"Mobile\": \"98883434559\",\n\t\t\t\"State\": \"State\",\n\t\t\t\"Lead_Source\": \"Advertisement\",\n\t\t\t\"Country\": \"Country\",\n\t\t\t\"Fax\": \"Fax\",\n\t\t\t\"Annual_Revenue\": 136.67,\n\t\t\t\"Secondary_Email\": \"newcrmapi@zoho.com\"\n\t\t}\n\t]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads/{{record-id}}",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads",
            "{{record-id}}"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Tue, 05 Oct 2021 17:52:52 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "148"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "Pragma",
          "value": "no-cache"
        },
        {
          "key": "Cache-Control",
          "value": "no-store, no-cache, must-revalidate, private"
        },
        {
          "key": "Expires",
          "value": "Thu, 01 Jan 1970 00:00:00 GMT"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-ACCESSTOKEN-RESET",
          "value": "2021-10-06T00:19:01+05:30"
        },
        {
          "key": "clientVersion",
          "value": "4424120"
        },
        {
          "key": "clientsubVersion",
          "value": "b071b45b5286ac3f4f7a4c7bb9fcbc54"
        },
        {
          "key": "Content-Disposition",
          "value": "attachment; filename=response.json"
        },
        {
          "key": "Content-Language",
          "value": "en-US"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"data\": [\n        {\n            \"code\": \"NOT_APPROVED\",\n            \"details\": {\n                \"id\": \"1306462000000496025\"\n            },\n            \"message\": \"cannot update record that is not approved yet\",\n            \"status\": \"error\"\n        }\n    ]\n}"
    },
    {
      "name": "RECORD_LOCKED",
      "originalRequest": {
        "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\"Last_Name\": \"Last_Name\",\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\"Rating\": \"Acquired\",\n\t\t\t\"Website\": \"crm.zoho.com\",\n\t\t\t\"Twitter\": \"Twitter\",\n\t\t\t\"Salutation\": \"Mr.\",\n\t\t\t\"First_Name\": \"First_Name\",\n\t\t\t\"Lead_Status\": \"Attempted to Contact\",\n\t\t\t\"Industry\": \"ASP\",\n\t\t\t\"Skype_ID\": \"Skype_ID\",\n\t\t\t\"Phone\": \"98883434559\",\n\t\t\t\"Street\": \"Street\",\n\t\t\t\"Zip_Code\": \"Zip_Code\",\n\t\t\t\"Email_Opt_Out\": false,\n\t\t\t\"Designation\": \"Designation\",\n\t\t\t\"City\": \"City\",\n\t\t\t\"No_of_Employees\": 1791,\n\t\t\t\"Mobile\": \"98883434559\",\n\t\t\t\"State\": \"State\",\n\t\t\t\"Lead_Source\": \"Advertisement\",\n\t\t\t\"Country\": \"Country\",\n\t\t\t\"Fax\": \"Fax\",\n\t\t\t\"Annual_Revenue\": 136.67,\n\t\t\t\"Secondary_Email\": \"newcrmapi@zoho.com\"\n\t\t}\n\t]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads/{{record-id}}",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads",
            "{{record-id}}"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Tue, 05 Oct 2021 18:06:39 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "181"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "Pragma",
          "value": "no-cache"
        },
        {
          "key": "Cache-Control",
          "value": "no-store, no-cache, must-revalidate, private"
        },
        {
          "key": "Expires",
          "value": "Thu, 01 Jan 1970 00:00:00 GMT"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-ACCESSTOKEN-RESET",
          "value": "2021-10-06T00:35:08+05:30"
        },
        {
          "key": "clientVersion",
          "value": "4424120"
        },
        {
          "key": "clientsubVersion",
          "value": "b071b45b5286ac3f4f7a4c7bb9fcbc54"
        },
        {
          "key": "Content-Disposition",
          "value": "attachment; filename=response.json"
        },
        {
          "key": "Content-Language",
          "value": "en-US"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"data\": [\n        {\n            \"code\": \"RECORD_LOCKED\",\n            \"details\": {\n                \"action\": \"zia_vision_processing\",\n                \"id\": \"475243000003269880\"\n            },\n            \"message\": \"cannot update record that is not approved yet\",\n            \"status\": \"error\"\n        }\n    ]\n}"
    }
  ]
}