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
-- 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
-- Adds the "Authorization: Bearer <access_token>" header.
EXEC sp_OASetProperty @http, 'AuthToken', '<access_token>'
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 @http, 'QuickGetSb', @success OUT, 'https://domain.com/crm/v2.1/Leads/{{record_id}}/Attachments', @sbResponseBody
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @sbResponseBody
RETURN
END
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 @http, 'LastStatus', @respStatusCode OUT
PRINT 'Response Status Code = ' + @respStatusCode
IF @respStatusCode >= 400
BEGIN
PRINT 'Response Header:'
EXEC sp_OAGetProperty @http, 'LastHeader', @sTmp0 OUT
PRINT @sTmp0
PRINT 'Failed.'
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @sbResponseBody
EXEC @hr = sp_OADestroy @jResp
RETURN
END
-- Sample JSON response:
-- (Sample code for parsing the JSON response is shown below)
-- {
-- "data": [
-- {
-- "Owner": {
-- "name": "Patricia Boyle",
-- "id": "4150868000000225013",
-- "email": "patricia.ss@zylker.com"
-- },
-- "Modified_Time": "2021-05-03T17:59:02+05:30",
-- "File_Name": "0f2b4454e6fea3b4c8fcc82e7d2601b0.jpg",
-- "Created_Time": "2021-05-03T17:59:02+05:30",
-- "Size": "563181",
-- "Parent_Id": {
-- "name": "Brian Dolan",
-- "id": "4150868000004943003"
-- },
-- "$editable": true,
-- "$sharing_permission": "full_access",
-- "$file_id": "1nvs60c82c750d8564edeaf5093ecadff1c9a",
-- "$type": "Attachment",
-- "$se_module": "Leads",
-- "Modified_By": {
-- "name": "Patricia Boyle",
-- "id": "4150868000000225013",
-- "email": "patricia.ss@zylker.com"
-- },
-- "$attachment_type": 0,
-- "$state": "save",
-- "id": "4150868000005282007",
-- "Created_By": {
-- "name": "Patricia Boyle",
-- "id": "4150868000000225013",
-- "email": "patricia.ss@zylker.com"
-- },
-- "$link_url": null
-- },
-- {
-- "Owner": {
-- "name": "Patricia Boyle",
-- "id": "4150868000000225013",
-- "email": "patricia.ss@zylker.com"
-- },
-- "Modified_Time": "2021-05-03T18:05:58+05:30",
-- "File_Name": "4150868000001144115.zip",
-- "Created_Time": "2021-05-03T18:05:58+05:30",
-- "Size": "335",
-- "Parent_Id": {
-- "name": "Brian Dolan",
-- "id": "4150868000004943003"
-- },
-- "$editable": true,
-- "$sharing_permission": "full_access",
-- "$file_id": "1nvs652667149a3684a938b5e751e55a280f5",
-- "$type": "Attachment",
-- "$se_module": "Leads",
-- "Modified_By": {
-- "name": "Patricia Boyle",
-- "id": "4150868000000225013",
-- "email": "patricia.ss@zylker.com"
-- },
-- "$attachment_type": 0,
-- "$state": "save",
-- "id": "4150868000005277042",
-- "Created_By": {
-- "name": "Patricia Boyle",
-- "id": "4150868000000225013",
-- "email": "patricia.ss@zylker.com"
-- },
-- "$link_url": null
-- },
-- {
-- "Owner": {
-- "name": "Patricia Boyle",
-- "id": "4150868000000225013",
-- "email": "patricia.ss@zylker.com"
-- },
-- "Modified_Time": "2021-05-03T18:03:00+05:30",
-- "File_Name": "0f2b4454e6fea3b4c8fcc82e7d2601b0.jpg",
-- "Created_Time": "2021-05-03T18:03:00+05:30",
-- "Size": "563181",
-- "Parent_Id": {
-- "name": "Brian Dolan",
-- "id": "4150868000004943003"
-- },
-- "$editable": true,
-- "$sharing_permission": "full_access",
-- "$file_id": "1nvs632039a760ec04736b291c070a4a60b11",
-- "$type": "Attachment",
-- "$se_module": "Leads",
-- "Modified_By": {
-- "name": "Patricia Boyle",
-- "id": "4150868000000225013",
-- "email": "patricia.ss@zylker.com"
-- },
-- "$attachment_type": 0,
-- "$state": "save",
-- "id": "4150868000005277036",
-- "Created_By": {
-- "name": "Patricia Boyle",
-- "id": "4150868000000225013",
-- "email": "patricia.ss@zylker.com"
-- },
-- "$link_url": null
-- }
-- ],
-- "info": {
-- "per_page": 200,
-- "count": 3,
-- "page": 1,
-- "more_records": false
-- }
-- }
-- Sample code for parsing the JSON response...
-- Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
DECLARE @Name nvarchar(4000)
DECLARE @Id nvarchar(4000)
DECLARE @v_Email nvarchar(4000)
DECLARE @Modified_Time nvarchar(4000)
DECLARE @File_Name nvarchar(4000)
DECLARE @Created_Time nvarchar(4000)
DECLARE @Size nvarchar(4000)
DECLARE @Parent_IdName nvarchar(4000)
DECLARE @Parent_IdId nvarchar(4000)
DECLARE @Seditable int
DECLARE @Ssharing_permission nvarchar(4000)
DECLARE @Sfile_id nvarchar(4000)
DECLARE @Stype nvarchar(4000)
DECLARE @Sse_module nvarchar(4000)
DECLARE @Modified_ByName nvarchar(4000)
DECLARE @Modified_ById nvarchar(4000)
DECLARE @Modified_ByEmail nvarchar(4000)
DECLARE @Sattachment_type int
DECLARE @Sstate nvarchar(4000)
DECLARE @id nvarchar(4000)
DECLARE @Created_ByName nvarchar(4000)
DECLARE @Created_ById nvarchar(4000)
DECLARE @Created_ByEmail nvarchar(4000)
DECLARE @Slink_url nvarchar(4000)
DECLARE @Per_page int
EXEC sp_OAMethod @jResp, 'IntOf', @Per_page OUT, 'info.per_page'
DECLARE @Count int
EXEC sp_OAMethod @jResp, 'IntOf', @Count OUT, 'info.count'
DECLARE @Page int
EXEC sp_OAMethod @jResp, 'IntOf', @Page OUT, 'info.page'
DECLARE @More_records int
EXEC sp_OAMethod @jResp, 'BoolOf', @More_records OUT, 'info.more_records'
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', @Name OUT, 'data[i].Owner.name'
EXEC sp_OAMethod @jResp, 'StringOf', @Id OUT, 'data[i].Owner.id'
EXEC sp_OAMethod @jResp, 'StringOf', @v_Email OUT, 'data[i].Owner.email'
EXEC sp_OAMethod @jResp, 'StringOf', @Modified_Time OUT, 'data[i].Modified_Time'
EXEC sp_OAMethod @jResp, 'StringOf', @File_Name OUT, 'data[i].File_Name'
EXEC sp_OAMethod @jResp, 'StringOf', @Created_Time OUT, 'data[i].Created_Time'
EXEC sp_OAMethod @jResp, 'StringOf', @Size OUT, 'data[i].Size'
EXEC sp_OAMethod @jResp, 'StringOf', @Parent_IdName OUT, 'data[i].Parent_Id.name'
EXEC sp_OAMethod @jResp, 'StringOf', @Parent_IdId OUT, 'data[i].Parent_Id.id'
EXEC sp_OAMethod @jResp, 'BoolOf', @Seditable OUT, 'data[i].$editable'
EXEC sp_OAMethod @jResp, 'StringOf', @Ssharing_permission OUT, 'data[i].$sharing_permission'
EXEC sp_OAMethod @jResp, 'StringOf', @Sfile_id OUT, 'data[i].$file_id'
EXEC sp_OAMethod @jResp, 'StringOf', @Stype OUT, 'data[i].$type'
EXEC sp_OAMethod @jResp, 'StringOf', @Sse_module OUT, 'data[i].$se_module'
EXEC sp_OAMethod @jResp, 'StringOf', @Modified_ByName OUT, 'data[i].Modified_By.name'
EXEC sp_OAMethod @jResp, 'StringOf', @Modified_ById OUT, 'data[i].Modified_By.id'
EXEC sp_OAMethod @jResp, 'StringOf', @Modified_ByEmail OUT, 'data[i].Modified_By.email'
EXEC sp_OAMethod @jResp, 'IntOf', @Sattachment_type OUT, 'data[i].$attachment_type'
EXEC sp_OAMethod @jResp, 'StringOf', @Sstate OUT, 'data[i].$state'
EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, 'data[i].id'
EXEC sp_OAMethod @jResp, 'StringOf', @Created_ByName OUT, 'data[i].Created_By.name'
EXEC sp_OAMethod @jResp, 'StringOf', @Created_ById OUT, 'data[i].Created_By.id'
EXEC sp_OAMethod @jResp, 'StringOf', @Created_ByEmail OUT, 'data[i].Created_By.email'
EXEC sp_OAMethod @jResp, 'StringOf', @Slink_url OUT, 'data[i].$link_url'
SELECT @i = @i + 1
END
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @sbResponseBody
EXEC @hr = sp_OADestroy @jResp
END
GO
Curl Command
curl -X GET
-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2.1/Leads/{{record_id}}/Attachments
Postman Collection Item JSON
{
"name": "Leads",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{access-token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/Leads/{{record_id}}/Attachments",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"Leads",
"{{record_id}}",
"Attachments"
]
},
"description": "To get the list of attachments."
},
"response": [
{
"name": "SUCCESS RESPONSE",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/Leads/4150868000004943003/Attachments",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"Leads",
"4150868000004943003",
"Attachments"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Mon, 03 May 2021 12:36:51 GMT"
},
{
"key": "Content-Type",
"value": "application/json;charset=utf-8"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
},
{
"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-03T18:26:34+05:30"
},
{
"key": "clientVersion",
"value": "4002155"
},
{
"key": "clientsubVersion",
"value": "bfb2326744b42e5c869a705645ac0006"
},
{
"key": "Content-Disposition",
"value": "attachment; filename=response.json"
},
{
"key": "vary",
"value": "accept-encoding"
},
{
"key": "Content-Encoding",
"value": "gzip"
},
{
"key": "Content-Language",
"value": "en-US"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=63072000"
}
],
"cookie": [
],
"body": "{\n \"data\": [\n {\n \"Owner\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"Modified_Time\": \"2021-05-03T17:59:02+05:30\",\n \"File_Name\": \"0f2b4454e6fea3b4c8fcc82e7d2601b0.jpg\",\n \"Created_Time\": \"2021-05-03T17:59:02+05:30\",\n \"Size\": \"563181\",\n \"Parent_Id\": {\n \"name\": \"Brian Dolan\",\n \"id\": \"4150868000004943003\"\n },\n \"$editable\": true,\n \"$sharing_permission\": \"full_access\",\n \"$file_id\": \"1nvs60c82c750d8564edeaf5093ecadff1c9a\",\n \"$type\": \"Attachment\",\n \"$se_module\": \"Leads\",\n \"Modified_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"$attachment_type\": 0,\n \"$state\": \"save\",\n \"id\": \"4150868000005282007\",\n \"Created_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"$link_url\": null\n },\n {\n \"Owner\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"Modified_Time\": \"2021-05-03T18:05:58+05:30\",\n \"File_Name\": \"4150868000001144115.zip\",\n \"Created_Time\": \"2021-05-03T18:05:58+05:30\",\n \"Size\": \"335\",\n \"Parent_Id\": {\n \"name\": \"Brian Dolan\",\n \"id\": \"4150868000004943003\"\n },\n \"$editable\": true,\n \"$sharing_permission\": \"full_access\",\n \"$file_id\": \"1nvs652667149a3684a938b5e751e55a280f5\",\n \"$type\": \"Attachment\",\n \"$se_module\": \"Leads\",\n \"Modified_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"$attachment_type\": 0,\n \"$state\": \"save\",\n \"id\": \"4150868000005277042\",\n \"Created_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"$link_url\": null\n },\n {\n \"Owner\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"Modified_Time\": \"2021-05-03T18:03:00+05:30\",\n \"File_Name\": \"0f2b4454e6fea3b4c8fcc82e7d2601b0.jpg\",\n \"Created_Time\": \"2021-05-03T18:03:00+05:30\",\n \"Size\": \"563181\",\n \"Parent_Id\": {\n \"name\": \"Brian Dolan\",\n \"id\": \"4150868000004943003\"\n },\n \"$editable\": true,\n \"$sharing_permission\": \"full_access\",\n \"$file_id\": \"1nvs632039a760ec04736b291c070a4a60b11\",\n \"$type\": \"Attachment\",\n \"$se_module\": \"Leads\",\n \"Modified_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"$attachment_type\": 0,\n \"$state\": \"save\",\n \"id\": \"4150868000005277036\",\n \"Created_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"4150868000000225013\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"$link_url\": null\n }\n ],\n \"info\": {\n \"per_page\": 200,\n \"count\": 3,\n \"page\": 1,\n \"more_records\": false\n }\n}"
},
{
"name": "INVALID_MODULE",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/Lead/4150868000004943003/Attachments",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"Lead",
"4150868000004943003",
"Attachments"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Mon, 03 May 2021 12:38:01 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-03T18:26:34+05:30"
},
{
"key": "clientVersion",
"value": "4002155"
},
{
"key": "clientsubVersion",
"value": "bfb2326744b42e5c869a705645ac0006"
},
{
"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_URL_PATTERN",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/Leads/4150868000004943003Attachments",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"Leads",
"4150868000004943003Attachments"
]
}
},
"status": "Not Found",
"code": 404,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Mon, 03 May 2021 12:38:26 GMT"
},
{
"key": "Content-Type",
"value": "application/json;charset=utf-8"
},
{
"key": "Content-Length",
"value": "131"
},
{
"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-03T18:26:34+05:30"
},
{
"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_URL_PATTERN\",\n \"details\": {},\n \"message\": \"Please check if the URL trying to access is a correct one\",\n \"status\": \"error\"\n}"
},
{
"name": "INVALID_REQUEST_METHOD",
"originalRequest": {
"method": "COPY",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/Leads/4150868000004943003Attachments",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"Leads",
"4150868000004943003Attachments"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Mon, 03 May 2021 12:38:45 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": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/Leads/4150868000004943003Attachments",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"Leads",
"4150868000004943003Attachments"
]
}
},
"status": "Unauthorized",
"code": 401,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Mon, 03 May 2021 12:39:01 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": "OAUTH_SCOPE_MISMATCH",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/Leads/4150868000004943003/Attachments",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"Leads",
"4150868000004943003",
"Attachments"
]
}
},
"status": "Unauthorized",
"code": 401,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Mon, 03 May 2021 13:23:04 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}"
}
]
}