Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
// Adds the "Authorization: Bearer <access_token>" header.
http.authToken = "<access_token>"
let sbResponseBody = CkoStringBuilder()!
success = http.quickGetSb("https://domain.com/crm/v2/notes", sbContent: sbResponseBody)
if success == false {
print("\(http.lastErrorText!)")
return
}
let jResp = CkoJsonObject()!
jResp.loadSb(sbResponseBody)
jResp.emitCompact = false
print("Response Body:")
print("\(jResp.emit()!)")
var respStatusCode: Int = http.lastStatus.intValue
print("Response Status Code = \(respStatusCode)")
if respStatusCode >= 400 {
print("Response Header:")
print("\(http.lastHeader!)")
print("Failed.")
return
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "data": [
// {
// "Owner": {
// "name": "Patricia Boyle",
// "id": "738964000000291009",
// "email": "patricia.ss@zylker.com"
// },
// "Modified_Time": "2021-05-07T11:10:01+00:00",
// "$attachments": null,
// "Created_Time": "2021-05-07T11:08:30+00:00",
// "Parent_Id": {
// "name": null,
// "id": "738964000002131001"
// },
// "$editable": true,
// "$se_module": "Leads",
// "$is_shared_to_client": false,
// "Modified_By": {
// "name": "Patricia Boyle",
// "id": "738964000000291009",
// "email": "patricia.ss@zylker.com"
// },
// "$size": null,
// "$state": "save",
// "$voice_note": false,
// "id": "738964000002130215",
// "Created_By": {
// "name": "Patricia Boyle",
// "id": "738964000000291009",
// "email": "patricia.ss@zylker.com"
// },
// "Note_Title": "Contacted",
// "Note_Content": "Have to assign to a different user"
// }
// ],
// "info": {
// "per_page": 1,
// "count": 1,
// "page": 1,
// "more_records": true
// }
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
var Name: String?
var Id: String?
var v_Email: String?
var Modified_Time: String?
var Sattachments: String?
var Created_Time: String?
var Parent_IdName: String?
var Parent_IdId: String?
var Seditable: Bool
var Sse_module: String?
var Sis_shared_to_client: Bool
var Modified_ByName: String?
var Modified_ById: String?
var Modified_ByEmail: String?
var Ssize: String?
var Sstate: String?
var Svoice_note: Bool
var id: String?
var Created_ByName: String?
var Created_ById: String?
var Created_ByEmail: String?
var Note_Title: String?
var Note_Content: String?
var Per_page: Int = jResp.int(of: "info.per_page").intValue
var Count: Int = jResp.int(of: "info.count").intValue
var Page: Int = jResp.int(of: "info.page").intValue
var More_records: Bool = jResp.bool(of: "info.more_records")
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "data").intValue
while i < count_i {
jResp.i = i
Name = jResp.string(of: "data[i].Owner.name")
Id = jResp.string(of: "data[i].Owner.id")
v_Email = jResp.string(of: "data[i].Owner.email")
Modified_Time = jResp.string(of: "data[i].Modified_Time")
Sattachments = jResp.string(of: "data[i].$attachments")
Created_Time = jResp.string(of: "data[i].Created_Time")
Parent_IdName = jResp.string(of: "data[i].Parent_Id.name")
Parent_IdId = jResp.string(of: "data[i].Parent_Id.id")
Seditable = jResp.bool(of: "data[i].$editable")
Sse_module = jResp.string(of: "data[i].$se_module")
Sis_shared_to_client = jResp.bool(of: "data[i].$is_shared_to_client")
Modified_ByName = jResp.string(of: "data[i].Modified_By.name")
Modified_ById = jResp.string(of: "data[i].Modified_By.id")
Modified_ByEmail = jResp.string(of: "data[i].Modified_By.email")
Ssize = jResp.string(of: "data[i].$size")
Sstate = jResp.string(of: "data[i].$state")
Svoice_note = jResp.bool(of: "data[i].$voice_note")
id = jResp.string(of: "data[i].id")
Created_ByName = jResp.string(of: "data[i].Created_By.name")
Created_ById = jResp.string(of: "data[i].Created_By.id")
Created_ByEmail = jResp.string(of: "data[i].Created_By.email")
Note_Title = jResp.string(of: "data[i].Note_Title")
Note_Content = jResp.string(of: "data[i].Note_Content")
i = i + 1
}
}
Curl Command
curl -X GET
-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2/notes
Postman Collection Item JSON
{
"name": "Notes",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{access-token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2/notes",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"notes"
]
},
"description": "To get the list of notes."
},
"response": [
{
"name": "P1: page & per_page",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2/notes?page=1&per_page=1",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"notes"
],
"query": [
{
"key": "page",
"value": "1"
},
{
"key": "per_page",
"value": "1"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Tue, 11 May 2021 16:05:08 GMT"
},
{
"key": "Content-Type",
"value": "application/json;charset=utf-8"
},
{
"key": "Content-Length",
"value": "738"
},
{
"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-11T16:58:15+00:00"
},
{
"key": "clientVersion",
"value": "4027076"
},
{
"key": "clientsubVersion",
"value": "748ecbe82ec7e144b66ee25f264bbd88"
},
{
"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 \"Owner\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"Modified_Time\": \"2021-05-07T11:10:01+00:00\",\n \"$attachments\": null,\n \"Created_Time\": \"2021-05-07T11:08:30+00:00\",\n \"Parent_Id\": {\n \"name\": null,\n \"id\": \"738964000002131001\"\n },\n \"$editable\": true,\n \"$se_module\": \"Leads\",\n \"$is_shared_to_client\": false,\n \"Modified_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"$size\": null,\n \"$state\": \"save\",\n \"$voice_note\": false,\n \"id\": \"738964000002130215\",\n \"Created_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"Note_Title\": \"Contacted\",\n \"Note_Content\": \"Have to assign to a different user\"\n }\n ],\n \"info\": {\n \"per_page\": 1,\n \"count\": 1,\n \"page\": 1,\n \"more_records\": true\n }\n}"
},
{
"name": "P2: fields",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2/notes?fields=Note_Content",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"notes"
],
"query": [
{
"key": "fields",
"value": "Note_Content"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Tue, 11 May 2021 16:05:26 GMT"
},
{
"key": "Content-Type",
"value": "application/json;charset=utf-8"
},
{
"key": "Content-Length",
"value": "446"
},
{
"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-11T16:58:15+00:00"
},
{
"key": "clientVersion",
"value": "4027076"
},
{
"key": "clientsubVersion",
"value": "748ecbe82ec7e144b66ee25f264bbd88"
},
{
"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 \"id\": \"738964000002130215\",\n \"Note_Content\": \"Have to assign to a different user\"\n },\n {\n \"id\": \"738964000002130210\",\n \"Note_Content\": \"Need to do further tracking\"\n },\n {\n \"id\": \"738964000002130205\",\n \"Note_Content\": \"Need to do further tracking\"\n },\n {\n \"id\": \"738964000002130200\",\n \"Note_Content\": \"Need to do further tracking\"\n },\n {\n \"id\": \"738964000002058083\",\n \"Note_Content\": \"Need to do further tracking\"\n }\n ],\n \"info\": {\n \"per_page\": 200,\n \"count\": 5,\n \"page\": 1,\n \"more_records\": false\n }\n}"
},
{
"name": "P3: sort_order & sort_by",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2/notes?sort_order=asc&sort_by=id&fields=id",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"notes"
],
"query": [
{
"key": "sort_order",
"value": "asc"
},
{
"key": "sort_by",
"value": "id"
},
{
"key": "fields",
"value": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Thu, 13 May 2021 08:51:05 GMT"
},
{
"key": "Content-Type",
"value": "application/json;charset=utf-8"
},
{
"key": "Content-Length",
"value": "242"
},
{
"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-13T09:27:38+00:00"
},
{
"key": "clientVersion",
"value": "4031107"
},
{
"key": "clientsubVersion",
"value": "113b962796fc62946d9303284a64efab"
},
{
"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 \"id\": \"738964000002058083\"\n },\n {\n \"id\": \"738964000002130200\"\n },\n {\n \"id\": \"738964000002130205\"\n },\n {\n \"id\": \"738964000002130210\"\n },\n {\n \"id\": \"738964000002152031\"\n },\n {\n \"id\": \"738964000002152036\"\n }\n ],\n \"info\": {\n \"per_page\": 200,\n \"count\": 6,\n \"page\": 1,\n \"more_records\": false\n }\n}"
},
{
"name": "SUCCESS RESPONSE",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2/notes",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"notes"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Tue, 11 May 2021 16:04:26 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-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-11T16:58:15+00:00"
},
{
"key": "clientVersion",
"value": "4027076"
},
{
"key": "clientsubVersion",
"value": "748ecbe82ec7e144b66ee25f264bbd88"
},
{
"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=15768000"
}
],
"cookie": [
],
"body": "{\n \"data\": [\n {\n \"Owner\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"Modified_Time\": \"2021-05-07T11:10:01+00:00\",\n \"$attachments\": null,\n \"Created_Time\": \"2021-05-07T11:08:30+00:00\",\n \"Parent_Id\": {\n \"name\": null,\n \"id\": \"738964000002131001\"\n },\n \"$editable\": true,\n \"$se_module\": \"Leads\",\n \"$is_shared_to_client\": false,\n \"Modified_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"$size\": null,\n \"$state\": \"save\",\n \"$voice_note\": false,\n \"id\": \"738964000002130215\",\n \"Created_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"Note_Title\": \"Contacted\",\n \"Note_Content\": \"Have to assign to a different user\"\n },\n {\n \"Owner\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"Modified_Time\": \"2021-05-07T11:08:22+00:00\",\n \"$attachments\": null,\n \"Created_Time\": \"2021-05-07T11:08:22+00:00\",\n \"Parent_Id\": {\n \"name\": null,\n \"id\": \"738964000002131001\"\n },\n \"$editable\": true,\n \"$se_module\": \"Leads\",\n \"$is_shared_to_client\": false,\n \"Modified_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"$size\": null,\n \"$state\": \"save\",\n \"$voice_note\": false,\n \"id\": \"738964000002130210\",\n \"Created_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"Note_Title\": \"Contacted\",\n \"Note_Content\": \"Need to do further tracking\"\n },\n {\n \"Owner\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"Modified_Time\": \"2021-05-07T11:06:20+00:00\",\n \"$attachments\": null,\n \"Created_Time\": \"2021-05-07T11:06:20+00:00\",\n \"Parent_Id\": {\n \"name\": null,\n \"id\": \"738964000002131001\"\n },\n \"$editable\": true,\n \"$se_module\": \"Leads\",\n \"$is_shared_to_client\": false,\n \"Modified_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"$size\": null,\n \"$state\": \"save\",\n \"$voice_note\": false,\n \"id\": \"738964000002130205\",\n \"Created_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"Note_Title\": \"Contacted\",\n \"Note_Content\": \"Need to do further tracking\"\n },\n {\n \"Owner\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"Modified_Time\": \"2021-05-07T11:05:34+00:00\",\n \"$attachments\": null,\n \"Created_Time\": \"2021-05-07T11:05:34+00:00\",\n \"Parent_Id\": {\n \"name\": null,\n \"id\": \"738964000002131001\"\n },\n \"$editable\": true,\n \"$se_module\": \"Leads\",\n \"$is_shared_to_client\": false,\n \"Modified_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"$size\": null,\n \"$state\": \"save\",\n \"$voice_note\": false,\n \"id\": \"738964000002130200\",\n \"Created_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"Note_Title\": \"Contacted\",\n \"Note_Content\": \"Need to do further tracking\"\n },\n {\n \"Owner\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"Modified_Time\": \"2021-04-21T09:05:46+00:00\",\n \"$attachments\": null,\n \"Created_Time\": \"2021-04-21T09:05:46+00:00\",\n \"Parent_Id\": {\n \"name\": null,\n \"id\": \"738964000002058068\"\n },\n \"$editable\": true,\n \"$se_module\": \"Leads\",\n \"$is_shared_to_client\": false,\n \"Modified_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"$size\": null,\n \"$state\": \"save\",\n \"$voice_note\": false,\n \"id\": \"738964000002058083\",\n \"Created_By\": {\n \"name\": \"Patricia Boyle\",\n \"id\": \"738964000000291009\",\n \"email\": \"patricia.ss@zylker.com\"\n },\n \"Note_Title\": null,\n \"Note_Content\": \"Need to do further tracking\"\n }\n ],\n \"info\": {\n \"per_page\": 200,\n \"count\": 5,\n \"page\": 1,\n \"more_records\": false\n }\n}"
},
{
"name": "INVALID_MODULE",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2/note",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"note"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Tue, 11 May 2021 16:05:49 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-11T16:58:15+00:00"
},
{
"key": "clientVersion",
"value": "4027076"
},
{
"key": "clientsubVersion",
"value": "748ecbe82ec7e144b66ee25f264bbd88"
},
{
"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_REQUEST_METHOD",
"originalRequest": {
"method": "COPY",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2/notes",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"notes"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Tue, 11 May 2021 16:06:10 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/notes",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"notes"
]
}
},
"status": "Unauthorized",
"code": 401,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Tue, 11 May 2021 16:06:29 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/notes",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2",
"notes"
]
}
},
"status": "Unauthorized",
"code": 401,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "ZGS"
},
{
"key": "Date",
"value": "Thu, 13 May 2021 06:40:10 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}"
}
]
}