Chilkat Online Tools

Classic ASP / Zoho CRM REST APIs / Leads

Back to Collection Items

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

set http = Server.CreateObject("Chilkat_9_5_0.Http")

' 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"
'     }
'   ]
' }

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

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

' resp is a Chilkat_9_5_0.HttpResponse
Set resp = http.PostJson3("https://domain.com/crm/v2/Leads","application/json",json)
If (http.LastMethodSuccess = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( http.LastErrorText) & "</pre>"
    Response.End
End If

set sbResponseBody = Server.CreateObject("Chilkat_9_5_0.StringBuilder")
success = resp.GetBodySb(sbResponseBody)

set jResp = Server.CreateObject("Chilkat_9_5_0.JsonObject")
success = jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = 0

Response.Write "<pre>" & Server.HTMLEncode( "Response Body:") & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( jResp.Emit()) & "</pre>"

respStatusCode = resp.StatusCode
Response.Write "<pre>" & Server.HTMLEncode( "Response Status Code = " & respStatusCode) & "</pre>"
If (respStatusCode >= 400) Then
    Response.Write "<pre>" & Server.HTMLEncode( "Response Header:") & "</pre>"
    Response.Write "<pre>" & Server.HTMLEncode( resp.Header) & "</pre>"
    Response.Write "<pre>" & Server.HTMLEncode( "Failed.") & "</pre>"

    Response.End
End If

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

' {
'   "data": [
'     {
'       "code": "SUCCESS",
'       "details": {
'         "Modified_Time": "2021-05-11T12:38:18+00:00",
'         "Modified_By": {
'           "name": "Patricia Boyle",
'           "id": "738964000000291009"
'         },
'         "Created_Time": "2021-05-11T12:38:18+00:00",
'         "id": "738964000002148035",
'         "Created_By": {
'           "name": "Patricia Boyle",
'           "id": "738964000000291009"
'         }
'       },
'       "message": "record added",
'       "status": "success"
'     },
'     {
'       "code": "SUCCESS",
'       "details": {
'         "Modified_Time": "2021-05-11T12:38:18+00:00",
'         "Modified_By": {
'           "name": "Patricia Boyle",
'           "id": "738964000000291009"
'         },
'         "Created_Time": "2021-05-11T12:38:18+00:00",
'         "id": "738964000002148036",
'         "Created_By": {
'           "name": "Patricia Boyle",
'           "id": "738964000000291009"
'         }
'       },
'       "message": "record added",
'       "status": "success"
'     }
'   ]
' }

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

i = 0
count_i = jResp.SizeOfArray("data")
Do While i < count_i
    jResp.I = i
    code = jResp.StringOf("data[i].code")
    Modified_Time = jResp.StringOf("data[i].details.Modified_Time")
    Name = jResp.StringOf("data[i].details.Modified_By.name")
    Id = jResp.StringOf("data[i].details.Modified_By.id")
    Created_Time = jResp.StringOf("data[i].details.Created_Time")
    detailsId = jResp.StringOf("data[i].details.id")
    Created_ByName = jResp.StringOf("data[i].details.Created_By.name")
    Created_ById = jResp.StringOf("data[i].details.Created_By.id")
    message = jResp.StringOf("data[i].message")
    status = jResp.StringOf("data[i].status")
    i = i + 1
Loop

%>
</body>
</html>

Curl Command

curl -X POST
	-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/Leads

Postman Collection Item JSON

{
  "name": "Leads",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{access-token}}",
          "type": "string"
        }
      ]
    },
    "method": "POST",
    "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/Leads",
      "host": [
        "{{api-domain}}"
      ],
      "path": [
        "crm",
        "v2",
        "Leads"
      ]
    },
    "description": "To add new entities to a module."
  },
  "response": [
    {
      "name": "SUCCESS RESPONSE",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "name": "Content-Type",
            "value": "application/json",
            "type": "text"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Company\": \"Zylker\",\n            \"Last_Name\": \"Daly\",\n            \"First_Name\": \"Paul\",\n            \"Email\": \"p.daly@zylker.com\",\n            \"State\": \"Texas\"\n        },\n        {\n            \"Company\": \"Villa Margarita\",\n            \"Last_Name\": \"Dolan\",\n            \"First_Name\": \"Brian\",\n            \"Email\": \"brian@villa.com\",\n            \"State\": \"Texas\"\n        }\n    ],\n    \"trigger\": [\n        \"approval\",\n        \"workflow\",\n        \"blueprint\"\n    ]\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2/Leads",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2",
            "Leads"
          ]
        }
      },
      "status": "Created",
      "code": 201,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Tue, 11 May 2021 12:38:13 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "648"
        },
        {
          "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-05-11T12:57:36+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4023320"
        },
        {
          "key": "clientsubVersion",
          "value": "4d8b6ee4f7d1d284c930a4e807480c5c"
        },
        {
          "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-11T12:38:18+00:00\",\n                \"Modified_By\": {\n                    \"name\": \"Patricia Boyle\",\n                    \"id\": \"738964000000291009\"\n                },\n                \"Created_Time\": \"2021-05-11T12:38:18+00:00\",\n                \"id\": \"738964000002148035\",\n                \"Created_By\": {\n                    \"name\": \"Patricia Boyle\",\n                    \"id\": \"738964000000291009\"\n                }\n            },\n            \"message\": \"record added\",\n            \"status\": \"success\"\n        },\n        {\n            \"code\": \"SUCCESS\",\n            \"details\": {\n                \"Modified_Time\": \"2021-05-11T12:38:18+00:00\",\n                \"Modified_By\": {\n                    \"name\": \"Patricia Boyle\",\n                    \"id\": \"738964000000291009\"\n                },\n                \"Created_Time\": \"2021-05-11T12:38:18+00:00\",\n                \"id\": \"738964000002148036\",\n                \"Created_By\": {\n                    \"name\": \"Patricia Boyle\",\n                    \"id\": \"738964000000291009\"\n                }\n            },\n            \"message\": \"record added\",\n            \"status\": \"success\"\n        }\n    ]\n}"
    },
    {
      "name": "INVALID_MODULE",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Company\": \"Zylker\",\n            \"Last_Name\": \"Daly\",\n            \"First_Name\": \"Paul\",\n            \"Email\": \"p.daly@zylker.com\",\n            \"State\": \"Texas\"\n        },\n        {\n            \"Company\": \"Villa Margarita\",\n            \"Last_Name\": \"Dolan\",\n            \"First_Name\": \"Brian\",\n            \"Email\": \"brian@villa.com\",\n            \"State\": \"Texas\"\n        }\n    ],\n    \"trigger\": [\n        \"approval\",\n        \"workflow\",\n        \"blueprint\"\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2/Lead",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2",
            "Lead"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Tue, 11 May 2021 12:39:01 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "110"
        },
        {
          "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-05-11T12:57:36+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4023320"
        },
        {
          "key": "clientsubVersion",
          "value": "4d8b6ee4f7d1d284c930a4e807480c5c"
        },
        {
          "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    \"message\": \"the module name given seems to be invalid\",\n    \"status\": \"error\"\n}"
    },
    {
      "name": "INVALID_DATA",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Company\": \"Zylker\",\n            \"Last_Name\": \"Daly\",\n            \"First_Name\": \"Paul\",\n            \"Email\": \"p.daly\",\n            \"State\": \"Texas\"\n        }\n    ],\n    \"trigger\": [\n        \"approval\",\n        \"workflow\",\n        \"blueprint\"\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2/Leads",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2",
            "Leads"
          ]
        }
      },
      "status": "Accepted",
      "code": 202,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Tue, 11 May 2021 12:39:34 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "136"
        },
        {
          "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-05-11T12:57:36+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4023320"
        },
        {
          "key": "clientsubVersion",
          "value": "4d8b6ee4f7d1d284c930a4e807480c5c"
        },
        {
          "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\": \"email\",\n                \"api_name\": \"Email\"\n            },\n            \"message\": \"invalid data\",\n            \"status\": \"error\"\n        }\n    ]\n}"
    },
    {
      "name": "MANDATORY_NOT_FOUND",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Company\": \"Zylker\",\n            \"First_Name\": \"Paul\",\n            \"Email\": \"p.daly@zylker.com\",\n            \"State\": \"Texas\"\n        }\n    ],\n    \"trigger\": [\n        \"approval\",\n        \"workflow\",\n        \"blueprint\"\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2/Leads",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2",
            "Leads"
          ]
        }
      },
      "status": "Accepted",
      "code": 202,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Tue, 11 May 2021 12:40:03 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "130"
        },
        {
          "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-05-11T12:57:36+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4023320"
        },
        {
          "key": "clientsubVersion",
          "value": "4d8b6ee4f7d1d284c930a4e807480c5c"
        },
        {
          "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\": \"Last_Name\"\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            \"Company\": \"Zylker\",\n            \"First_Name\": \"Paul\",\n            \"Email\": \"p.daly@zylker.com\",\n            \"State\": \"Texas\"\n        }\n    ],\n    \"trigger\": [\n        \"approval\",\n        \"workflow\",\n        \"blueprint\"\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2/Leads",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2",
            "Leads"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Tue, 11 May 2021 12:40:22 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": "AUTHENTICATION_FAILURE",
      "originalRequest": {
        "method": "POST",
        "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/Leads",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2",
            "Leads"
          ]
        }
      },
      "status": "Unauthorized",
      "code": 401,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Tue, 11 May 2021 12:40:47 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "98"
        },
        {
          "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\": \"AUTHENTICATION_FAILURE\",\n    \"details\": {},\n    \"message\": \"Authentication failed\",\n    \"status\": \"error\"\n}"
    },
    {
      "name": "DUPLICATE_DATA",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "{{authorization-token}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"data\": [\n        {\n            \"Company\": \"Zylker\",\n            \"Last_Name\": \"Daly\",\n            \"First_Name\": \"Paul\",\n            \"Email\": \"p.daly@zylker.com\",\n            \"State\": \"Texas\",\n            \"Mobile\":\"9898989898\"\n        },\n        {\n            \"Company\": \"Villa Margarita\",\n            \"Last_Name\": \"Dolan\",\n            \"First_Name\": \"Brian\",\n            \"Email\": \"brian@villa.com\",\n            \"State\": \"Texas\"\n        }\n    ],\n    \"trigger\": [\n        \"approval\",\n        \"workflow\",\n        \"blueprint\"\n    ]\n}"
        },
        "url": {
          "raw": "{{api-domain}}/crm/v2/Leads",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2",
            "Leads"
          ]
        }
      },
      "status": "Accepted",
      "code": 202,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Tue, 11 May 2021 12:41:33 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "457"
        },
        {
          "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-05-11T12:57:36+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4023320"
        },
        {
          "key": "clientsubVersion",
          "value": "4d8b6ee4f7d1d284c930a4e807480c5c"
        },
        {
          "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                \"id\": \"738964000002131001\"\n            },\n            \"message\": \"duplicate data\",\n            \"status\": \"error\"\n        },\n        {\n            \"code\": \"SUCCESS\",\n            \"details\": {\n                \"Modified_Time\": \"2021-05-11T12:41:33+00:00\",\n                \"Modified_By\": {\n                    \"name\": \"Patricia Boyle\",\n                    \"id\": \"738964000000291009\"\n                },\n                \"Created_Time\": \"2021-05-11T12:41:33+00:00\",\n                \"id\": \"738964000002148061\",\n                \"Created_By\": {\n                    \"name\": \"Patricia Boyle\",\n                    \"id\": \"738964000000291009\"\n                }\n            },\n            \"message\": \"record added\",\n            \"status\": \"success\"\n        }\n    ]\n}"
    },
    {
      "name": "OAUTH_SCOPE_MISMATCH",
      "originalRequest": {
        "method": "POST",
        "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/Leads",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2",
            "Leads"
          ]
        }
      },
      "status": "Unauthorized",
      "code": 401,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Thu, 13 May 2021 06:33:53 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}"
    }
  ]
}