Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Json
oleobject loo_SbRequestBody
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_Code
string ls_Modified_Time
string ls_Name
string ls_Id
string ls_Created_Time
string ls_DetailsId
string ls_Created_ByName
string ls_Created_ById
string ls_Message
string ls_Status
integer i
integer li_Count_i
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
// 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"
// }
// ]
// }
loo_Json = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")
loo_Json.UpdateString("data[0].Owner.id","{{user-id}}")
loo_Json.UpdateString("data[0].Last_Name","Last_Name")
loo_Json.UpdateString("data[0].Email","newcrmapi@zoho.com")
loo_Json.UpdateString("data[0].Description","Design your own layouts that align your business processes precisely. Assign them to profiles appropriately.")
loo_Json.UpdateString("data[0].Rating","Acquired")
loo_Json.UpdateString("data[0].Website","crm.zoho.com")
loo_Json.UpdateString("data[0].Twitter","Twitter")
loo_Json.UpdateString("data[0].Salutation","Mr.")
loo_Json.UpdateString("data[0].First_Name","First_Name")
loo_Json.UpdateString("data[0].Lead_Status","Attempted to Contact")
loo_Json.UpdateString("data[0].Industry","ASP")
loo_Json.UpdateString("data[0].Skype_ID","Skype_ID")
loo_Json.UpdateString("data[0].Phone","98883434559")
loo_Json.UpdateString("data[0].Street","Street")
loo_Json.UpdateString("data[0].Zip_Code","Zip_Code")
loo_Json.UpdateBool("data[0].Email_Opt_Out",0)
loo_Json.UpdateString("data[0].Designation","Designation")
loo_Json.UpdateString("data[0].City","City")
loo_Json.UpdateInt("data[0].No_of_Employees",1791)
loo_Json.UpdateString("data[0].Mobile","98883434559")
loo_Json.UpdateString("data[0].State","State")
loo_Json.UpdateString("data[0].Lead_Source","Advertisement")
loo_Json.UpdateString("data[0].Country","Country")
loo_Json.UpdateString("data[0].Fax","Fax")
loo_Json.UpdateNumber("data[0].Annual_Revenue","136.67")
loo_Json.UpdateString("data[0].Secondary_Email","newcrmapi@zoho.com")
loo_Http.SetRequestHeader("Authorization","{{authorization-token}}")
loo_Http.SetRequestHeader("Content-Type","application/json")
loo_SbRequestBody = create oleobject
// Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
li_rc = loo_SbRequestBody.ConnectToNewObject("Chilkat.StringBuilder")
loo_Json.EmitSb(loo_SbRequestBody)
loo_Resp = loo_Http.PTextSb("PUT","https://domain.com/crm/v2/Leads/{{record-id}}",loo_SbRequestBody,"utf-8","application/json",0,0)
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_Json
destroy loo_SbRequestBody
return
end if
loo_SbResponseBody = create oleobject
// Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")
loo_Resp.GetBodySb(loo_SbResponseBody)
loo_JResp = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_JResp.ConnectToNewObject("Chilkat.JsonObject")
loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0
Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()
li_RespStatusCode = loo_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
Write-Debug "Response Header:"
Write-Debug loo_Resp.Header
Write-Debug "Failed."
destroy loo_Resp
destroy loo_Http
destroy loo_Json
destroy loo_SbRequestBody
destroy loo_SbResponseBody
destroy loo_JResp
return
end if
destroy loo_Resp
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "data": [
// {
// "code": "SUCCESS",
// "details": {
// "Modified_Time": "2021-05-11T12:52:29+00:00",
// "Modified_By": {
// "name": "Patricia Boyle",
// "id": "738964000000291009"
// },
// "Created_Time": "2021-05-11T12:41:33+00:00",
// "id": "738964000002148061",
// "Created_By": {
// "name": "Patricia Boyle",
// "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
i = 0
li_Count_i = loo_JResp.SizeOfArray("data")
do while i < li_Count_i
loo_JResp.I = i
ls_Code = loo_JResp.StringOf("data[i].code")
ls_Modified_Time = loo_JResp.StringOf("data[i].details.Modified_Time")
ls_Name = loo_JResp.StringOf("data[i].details.Modified_By.name")
ls_Id = loo_JResp.StringOf("data[i].details.Modified_By.id")
ls_Created_Time = loo_JResp.StringOf("data[i].details.Created_Time")
ls_DetailsId = loo_JResp.StringOf("data[i].details.id")
ls_Created_ByName = loo_JResp.StringOf("data[i].details.Created_By.name")
ls_Created_ById = loo_JResp.StringOf("data[i].details.Created_By.id")
ls_Message = loo_JResp.StringOf("data[i].message")
ls_Status = loo_JResp.StringOf("data[i].status")
i = i + 1
loop
destroy loo_Http
destroy loo_Json
destroy loo_SbRequestBody
destroy loo_SbResponseBody
destroy loo_JResp
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/Leads/{{record-id}}
Postman Collection Item JSON
{
"name": "Leads",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{access-token}}",
"type": "string"
}
]
},
"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/Leads/{{record-id}}",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"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",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{api-domain}}/crm/v2/Leads/738964000002148061",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"Leads",
"738964000002148061"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Tue, 11 May 2021 12:52:30 GMT"
},
{
"key": "Content-Type",
"value": "application/json;charset=utf-8"
},
{
"key": "Content-Length",
"value": "331"
},
{
"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:52:29+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 updated\",\n \"status\": \"success\"\n }\n ]\n}"
},
{
"name": "INVALID_MODULE",
"originalRequest": {
"method": "PUT",
"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 \"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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{api-domain}}/crm/v2/Lead/738964000002148061",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"Lead",
"738964000002148061"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Tue, 11 May 2021 12:52:50 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": "PUT",
"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 \"id\": 123\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"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:53:19 GMT"
},
{
"key": "Content-Type",
"value": "application/json;charset=utf-8"
},
{
"key": "Content-Length",
"value": "104"
},
{
"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": "Content-Disposition",
"value": "attachment; filename=response.json"
},
{
"key": "X-Download-Options",
"value": "noopen"
},
{
"key": "Content-Language",
"value": "en-US"
}
],
"cookie": [
],
"body": "{\n \"code\": \"INVALID_DATA\",\n \"details\": {\n \"expected_data_type\": \"jsonobject\"\n },\n \"message\": \"body\",\n \"status\": \"error\"\n}"
},
{
"name": "MANDATORY_NOT_FOUND",
"originalRequest": {
"method": "PUT",
"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 \"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}",
"options": {
"raw": {
"language": "json"
}
}
},
"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:53:54 GMT"
},
{
"key": "Content-Type",
"value": "application/json;charset=utf-8"
},
{
"key": "Content-Length",
"value": "123"
},
{
"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\": \"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",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"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}",
"options": {
"raw": {
"language": "json"
}
}
},
"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:54:16 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",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"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\": \"9898989898\",\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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{api-domain}}/crm/v2/Leads/738964000002131001",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"Leads",
"738964000002131001"
]
}
},
"status": "Accepted",
"code": 202,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Tue, 11 May 2021 12:55:20 GMT"
},
{
"key": "Content-Type",
"value": "application/json;charset=utf-8"
},
{
"key": "Content-Length",
"value": "138"
},
{
"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\": \"738964000002148061\"\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",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{api-domain}}/crm/v2/Leads/{{record-id}}",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"Leads",
"{{record-id}}"
]
}
},
"status": "Unauthorized",
"code": 401,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Thu, 13 May 2021 06:34:08 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",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{api-domain}}/crm/v2/Leads/{{record-id}}",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"Leads",
"{{record-id}}"
]
}
},
"status": "Accepted",
"code": 202,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Tue, 05 Oct 2021 17:50:53 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",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"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}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{api-domain}}/crm/v2/Leads/{{record-id}}",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"Leads",
"{{record-id}}"
]
}
},
"status": "Accepted",
"code": 202,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Tue, 05 Oct 2021 18:06:15 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}"
}
]
}