Back to Collection Items
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
-- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @success int
-- 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": [
-- {
-- "Company": "Zylker",
-- "Email": "patricia.boyle2@zylker.com",
-- "Industry": "ASP (Application Service Provider)",
-- "No_of_Employees": 100,
-- "Annual_Revenue": 10000,
-- "Twitter": "patricia",
-- "Website": "https://www.patriciaboyle.com",
-- "Salutation": "Ms.",
-- "First_Name": "Patricia",
-- "Lead_Status": "Contacted",
-- "$review": null,
-- "Email_Opt_Out": true,
-- "Mobile": "89898989893",
-- "Last_Name": "Boyle",
-- "Layout": {
-- "name": "Standard",
-- "id": "{{layout_id}}"
-- },
-- "Lead_Source": "Employee Referral"
-- }
-- ]
-- }
DECLARE @json int
-- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Company', 'Zylker'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Email', 'patricia.boyle2@zylker.com'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Industry', 'ASP (Application Service Provider)'
EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'data[0].No_of_Employees', 100
EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'data[0].Annual_Revenue', 10000
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Twitter', 'patricia'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Website', 'https://www.patriciaboyle.com'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Salutation', 'Ms.'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].First_Name', 'Patricia'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Lead_Status', 'Contacted'
EXEC sp_OAMethod @json, 'UpdateNull', @success OUT, 'data[0].$review'
EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'data[0].Email_Opt_Out', 1
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Mobile', '89898989893'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Last_Name', 'Boyle'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Layout.name', 'Standard'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Layout.id', '{{layout_id}}'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'data[0].Lead_Source', 'Employee Referral'
-- Adds the "Authorization: Bearer <access_token>" header.
EXEC sp_OASetProperty @http, 'AuthToken', '<access_token>'
DECLARE @resp int
EXEC sp_OAMethod @http, 'PostJson3', @resp OUT, 'https://domain.com/crm/v2/Leads/upsert', 'application/json', @json
EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
RETURN
END
DECLARE @sbResponseBody int
-- Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbResponseBody OUT
EXEC sp_OAMethod @resp, 'GetBodySb', @success OUT, @sbResponseBody
DECLARE @jResp int
-- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @jResp OUT
EXEC sp_OAMethod @jResp, 'LoadSb', @success OUT, @sbResponseBody
EXEC sp_OASetProperty @jResp, 'EmitCompact', 0
PRINT 'Response Body:'
EXEC sp_OAMethod @jResp, 'Emit', @sTmp0 OUT
PRINT @sTmp0
DECLARE @respStatusCode int
EXEC sp_OAGetProperty @resp, 'StatusCode', @respStatusCode OUT
PRINT 'Response Status Code = ' + @respStatusCode
IF @respStatusCode >= 400
BEGIN
PRINT 'Response Header:'
EXEC sp_OAGetProperty @resp, 'Header', @sTmp0 OUT
PRINT @sTmp0
PRINT 'Failed.'
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
EXEC @hr = sp_OADestroy @sbResponseBody
EXEC @hr = sp_OADestroy @jResp
RETURN
END
EXEC @hr = sp_OADestroy @resp
-- Sample JSON response:
-- (Sample code for parsing the JSON response is shown below)
-- {
-- "data": [
-- {
-- "code": "SUCCESS",
-- "duplicate_field": null,
-- "action": "insert",
-- "details": {
-- "Modified_Time": "2021-05-11T12:56:03+00:00",
-- "Modified_By": {
-- "name": "Patricia Boyle",
-- "id": "738964000000291009"
-- },
-- "Created_Time": "2021-05-11T12:56:03+00:00",
-- "id": "738964000002148126",
-- "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
DECLARE @code nvarchar(4000)
DECLARE @duplicate_field nvarchar(4000)
DECLARE @action nvarchar(4000)
DECLARE @Modified_Time nvarchar(4000)
DECLARE @Name nvarchar(4000)
DECLARE @Id nvarchar(4000)
DECLARE @Created_Time nvarchar(4000)
DECLARE @detailsId nvarchar(4000)
DECLARE @Created_ByName nvarchar(4000)
DECLARE @Created_ById nvarchar(4000)
DECLARE @message nvarchar(4000)
DECLARE @status nvarchar(4000)
DECLARE @i int
SELECT @i = 0
DECLARE @count_i int
EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'data'
WHILE @i < @count_i
BEGIN
EXEC sp_OASetProperty @jResp, 'I', @i
EXEC sp_OAMethod @jResp, 'StringOf', @code OUT, 'data[i].code'
EXEC sp_OAMethod @jResp, 'StringOf', @duplicate_field OUT, 'data[i].duplicate_field'
EXEC sp_OAMethod @jResp, 'StringOf', @action OUT, 'data[i].action'
EXEC sp_OAMethod @jResp, 'StringOf', @Modified_Time OUT, 'data[i].details.Modified_Time'
EXEC sp_OAMethod @jResp, 'StringOf', @Name OUT, 'data[i].details.Modified_By.name'
EXEC sp_OAMethod @jResp, 'StringOf', @Id OUT, 'data[i].details.Modified_By.id'
EXEC sp_OAMethod @jResp, 'StringOf', @Created_Time OUT, 'data[i].details.Created_Time'
EXEC sp_OAMethod @jResp, 'StringOf', @detailsId OUT, 'data[i].details.id'
EXEC sp_OAMethod @jResp, 'StringOf', @Created_ByName OUT, 'data[i].details.Created_By.name'
EXEC sp_OAMethod @jResp, 'StringOf', @Created_ById OUT, 'data[i].details.Created_By.id'
EXEC sp_OAMethod @jResp, 'StringOf', @message OUT, 'data[i].message'
EXEC sp_OAMethod @jResp, 'StringOf', @status OUT, 'data[i].status'
SELECT @i = @i + 1
END
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
EXEC @hr = sp_OADestroy @sbResponseBody
EXEC @hr = sp_OADestroy @jResp
END
GO
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-d '{
"data": [
{
"Company": "Zylker",
"Email": "patricia.boyle2@zylker.com",
"Industry": "ASP (Application Service Provider)",
"No_of_Employees": 100,
"Annual_Revenue": 10000,
"Twitter": "patricia",
"Website": "https://www.patriciaboyle.com",
"Salutation": "Ms.",
"First_Name": "Patricia",
"Lead_Status": "Contacted",
"$review": null,
"Email_Opt_Out": true,
"Mobile": "89898989893",
"Last_Name": "Boyle",
"Layout": {
"name": "Standard",
"id": "{{layout_id}}"
},
"Lead_Source": "Employee Referral"
}
]
}'
https://domain.com/crm/v2/Leads/upsert
Postman Collection Item JSON
{
"name": "Leads",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{access-token}}",
"type": "string"
}
]
},
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"data\": [\n {\n \"Company\": \"Zylker\",\n \"Email\": \"patricia.boyle2@zylker.com\",\n \"Industry\": \"ASP (Application Service Provider)\",\n \"No_of_Employees\": 100,\n \"Annual_Revenue\": 10000,\n \"Twitter\": \"patricia\",\n \"Website\": \"https://www.patriciaboyle.com\",\n \"Salutation\": \"Ms.\",\n \"First_Name\": \"Patricia\",\n \"Lead_Status\": \"Contacted\",\n \"$review\": null,\n \"Email_Opt_Out\": true,\n \"Mobile\": \"89898989893\",\n \"Last_Name\": \"Boyle\",\n \"Layout\": {\n \"name\": \"Standard\",\n \"id\": \"{{layout_id}}\"\n },\n \"Lead_Source\": \"Employee Referral\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{api-domain}}/crm/v2/Leads/upsert",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"Leads",
"upsert"
]
},
"description": "To upsert records in the Leads module."
},
"response": [
{
"name": "SUCCESS RESPONSE",
"originalRequest": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"data\": [\n {\n \"Company\": \"Zylker\",\n \"Email\": \"patricia.boyle2@zylker.com\",\n \"Industry\": \"ASP (Application Service Provider)\",\n \"No_of_Employees\": 100,\n \"Annual_Revenue\": 10000,\n \"Twitter\": \"patricia\",\n \"Website\": \"https://www.patriciaboyle.com\",\n \"Salutation\": \"Ms.\",\n \"First_Name\": \"Patricia\",\n \"Lead_Status\": \"Contacted\",\n \"$review\": null,\n \"Email_Opt_Out\": true,\n \"Mobile\": \"89898989893\",\n \"Last_Name\": \"Boyle\",\n \"Lead_Source\": \"Employee Referral\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{api-domain}}/crm/v2/Leads/upsert",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"Leads",
"upsert"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Tue, 11 May 2021 12:56:03 GMT"
},
{
"key": "Content-Type",
"value": "application/json;charset=utf-8"
},
{
"key": "Content-Length",
"value": "370"
},
{
"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 \"duplicate_field\": null,\n \"action\": \"insert\",\n \"details\": {\n \"Modified_Time\": \"2021-05-11T12:56:03+00:00\",\n \"Modified_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\"\n },\n \"Created_Time\": \"2021-05-11T12:56:03+00:00\",\n \"id\": \"738964000002148126\",\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": [
],
"body": {
"mode": "raw",
"raw": "{\n \"data\": [\n {\n \"Company\": \"Zylker\",\n \"Email\": \"patricia.boyle2@zylker.com\",\n \"Industry\": \"ASP (Application Service Provider)\",\n \"No_of_Employees\": 100,\n \"Annual_Revenue\": 10000,\n \"Twitter\": \"patricia\",\n \"Website\": \"https://www.patriciaboyle.com\",\n \"Salutation\": \"Ms.\",\n \"First_Name\": \"Patricia\",\n \"Lead_Status\": \"Contacted\",\n \"$review\": null,\n \"Email_Opt_Out\": true,\n \"Mobile\": \"89898989893\",\n \"Last_Name\": \"Boyle\",\n \"Lead_Source\": \"Employee Referral\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{api-domain}}/crm/v2/Lead/upsert",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"Lead",
"upsert"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Tue, 11 May 2021 12:56:28 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": [
],
"body": {
"mode": "raw",
"raw": "{\n \"data\": [\n {\n \"Company\": \"Zylker\",\n \"Email\": 123,\n \"Industry\": \"ASP (Application Service Provider)\",\n \"No_of_Employees\": 100,\n \"Annual_Revenue\": 10000,\n \"Twitter\": \"patricia\",\n \"Website\": \"https://www.patriciaboyle.com\",\n \"Salutation\": \"Ms.\",\n \"First_Name\": \"Patricia\",\n \"Lead_Status\": \"Contacted\",\n \"$review\": null,\n \"Email_Opt_Out\": true,\n \"Mobile\": \"89898989893\",\n \"Last_Name\": \"Boyle\",\n \"Lead_Source\": \"Employee Referral\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{api-domain}}/crm/v2/Leads/upsert",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"Leads",
"upsert"
]
}
},
"status": "Accepted",
"code": 202,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Tue, 11 May 2021 12:56:59 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": "INVALID_REQUEST_METHOD",
"originalRequest": {
"method": "COPY",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"data\": [\n {\n \"Company\": \"Zylker\",\n \"Email\": \"patricia.boyle2@zylker.com\",\n \"Industry\": \"ASP (Application Service Provider)\",\n \"No_of_Employees\": 100,\n \"Annual_Revenue\": 10000,\n \"Twitter\": \"patricia\",\n \"Website\": \"https://www.patriciaboyle.com\",\n \"Salutation\": \"Ms.\",\n \"First_Name\": \"Patricia\",\n \"Lead_Status\": \"Contacted\",\n \"$review\": null,\n \"Email_Opt_Out\": true,\n \"Mobile\": \"89898989893\",\n \"Last_Name\": \"Boyle\",\n \"Lead_Source\": \"Employee Referral\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{api-domain}}/crm/v2/Leads/upsert",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"Leads",
"upsert"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Tue, 11 May 2021 12:57:15 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": [
],
"body": {
"mode": "raw",
"raw": "{\n \"data\": [\n {\n \"Company\": \"Zylker\",\n \"Email\": \"patricia.boyle2@zylker.com\",\n \"Industry\": \"ASP (Application Service Provider)\",\n \"No_of_Employees\": 100,\n \"Annual_Revenue\": 10000,\n \"Twitter\": \"patricia\",\n \"Website\": \"https://www.patriciaboyle.com\",\n \"Salutation\": \"Ms.\",\n \"First_Name\": \"Patricia\",\n \"Lead_Status\": \"Contacted\",\n \"$review\": null,\n \"Email_Opt_Out\": true,\n \"Mobile\": \"89898989893\",\n \"Last_Name\": \"Boyle\",\n \"Lead_Source\": \"Employee Referral\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{api-domain}}/crm/v2/Leads/upsert",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"Leads",
"upsert"
]
}
},
"status": "Unauthorized",
"code": 401,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Tue, 11 May 2021 12:58:15 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": "NOT_APPROVED",
"originalRequest": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"data\": [\n {\n \"Company\": \"Zylker\",\n \"Industry\": \"ASP (Application Service Provider)\",\n \"No_of_Employees\": 100,\n \"Annual_Revenue\": 10000,\n \"Twitter\": \"patricia\",\n \"Website\": \"https://www.patriciaboyle.com\",\n \"Salutation\": \"Ms.\",\n \"First_Name\": \"Patricia\",\n \"Lead_Status\": \"Contacted\",\n \"$review\": null,\n \"Email_Opt_Out\": true,\n \"Mobile\": \"89898989893\",\n \"Last_Name\": \"Boyle\",\n \"Lead_Source\": \"Employee Referral\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{api-domain}}/crm/v2/Leads/upsert",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"Leads",
"upsert"
]
}
},
"status": "Accepted",
"code": 202,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Tue, 11 May 2021 12:58:42 GMT"
},
{
"key": "Content-Type",
"value": "application/json;charset=utf-8"
},
{
"key": "Content-Length",
"value": "147"
},
{
"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-11T13:58:39+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\": \"NOT_APPROVED\",\n \"details\": {\n \"id\": \"738964000002148126\"\n },\n \"message\": \"Cannot update record that is not approved yet\",\n \"status\": \"error\"\n }\n ]\n}"
}
]
}