Chilkat Online Tools

Foxpro / Zoho CRM REST APIs / Subforms

Back to Collection Items

LOCAL loHttp
LOCAL lnSuccess
LOCAL loSbResponseBody
LOCAL loJResp
LOCAL lnRespStatusCode
LOCAL lcName
LOCAL lcId
LOCAL lcV_Email
LOCAL lcCompany
LOCAL lcScurrency_symbol
LOCAL lcImage123
LOCAL lcSsharing_permission
LOCAL lcImage
LOCAL lcLast_Activity_Time
LOCAL lcIndustry
LOCAL lcSstate
LOCAL lcUnsubscribed_Mode
LOCAL lnSconverted
LOCAL lnSprocess_flow
LOCAL lnExchange_Rate
LOCAL lcV_Currency
LOCAL lcStreet
LOCAL lcZip_Code
LOCAL lcData_Processing_Basis_Details
LOCAL lcId
LOCAL lcData_Source
LOCAL lnSapproved
LOCAL lnDelegate
LOCAL lnApprove
LOCAL lnReject
LOCAL lnResubmit
LOCAL lcSdata_source_details
LOCAL lcCreated_Time
LOCAL lnSeditable
LOCAL lcCity
LOCAL lcNo_of_Employees
LOCAL lcState
LOCAL lcCountry
LOCAL lcCreated_ByName
LOCAL lcCreated_ById
LOCAL lcCreated_ByEmail
LOCAL lcAnnual_Revenue
LOCAL lcSecondary_Email
LOCAL lcDescription
LOCAL lcRating
LOCAL lnSreview_processApprove
LOCAL lnSreview_processReject
LOCAL lnSreview_processResubmit
LOCAL lcWebsite
LOCAL lcTwitter
LOCAL lcScanvas_id
LOCAL lcSalutation
LOCAL lcFirst_Name
LOCAL lcLead_Status
LOCAL lcFull_Name
LOCAL lcRecord_Image
LOCAL lcModified_ByName
LOCAL lcModified_ById
LOCAL lcModified_ByEmail
LOCAL lcSreview
LOCAL lcLead_Conversion_Time
LOCAL lcSkype_ID
LOCAL lcPhone
LOCAL lcHIPAA
LOCAL lnEmail_Opt_Out
LOCAL lcDesignation
LOCAL lcModified_Time
LOCAL lcUnsubscribed_Time
LOCAL lcMobile
LOCAL lnSorchestration
LOCAL lnSstop_processing
LOCAL lcLast_Name
LOCAL lnSin_merge
LOCAL lcLead_Source
LOCAL lcFax
LOCAL lcSapproval_state
LOCAL lnInterested_Leads
LOCAL lnMultiuser
LOCAL j
LOCAL lnCount_j
LOCAL i
LOCAL lnCount_i

* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.

* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Http')
loHttp = CreateObject('Chilkat.Http')

* Adds the "Authorization: Bearer <access_token>" header.
loHttp.AuthToken = "<access_token>"

* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.StringBuilder')
loSbResponseBody = CreateObject('Chilkat.StringBuilder')
lnSuccess = loHttp.QuickGetSb("https://domain.com/crm/v2.1/Leads/{{record_id}}",loSbResponseBody)
IF (lnSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    RELEASE loSbResponseBody
    CANCEL
ENDIF

* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.JsonObject')
loJResp = CreateObject('Chilkat.JsonObject')
loJResp.LoadSb(loSbResponseBody)
loJResp.EmitCompact = 0

? "Response Body:"
? loJResp.Emit()

lnRespStatusCode = loHttp.LastStatus
? "Response Status Code = " + STR(lnRespStatusCode)
IF (lnRespStatusCode >= 400) THEN
    ? "Response Header:"
    ? loHttp.LastHeader
    ? "Failed."
    RELEASE loHttp
    RELEASE loSbResponseBody
    RELEASE loJResp
    CANCEL
ENDIF

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

* {
*   "data": [
*     {
*       "Owner": {
*         "name": "patricia patricia",
*         "id": "738964000000291009",
*         "email": "patricia.ss@zylker.com"
*       },
*       "Company": null,
*       "Email": null,
*       "$currency_symbol": "Af",
*       "Interested_Leads": [
*       ],
*       "Image123": null,
*       "$sharing_permission": "full_access",
*       "Image": null,
*       "Last_Activity_Time": null,
*       "Industry": null,
*       "$state": "save",
*       "Unsubscribed_Mode": null,
*       "$converted": false,
*       "$process_flow": false,
*       "Exchange_Rate": 1,
*       "Currency": "AFN",
*       "Street": null,
*       "Zip_Code": null,
*       "multiuser": [
*       ],
*       "Data_Processing_Basis_Details": null,
*       "id": "738964000002131001",
*       "Data_Source": "Manual",
*       "$approved": true,
*       "$approval": {
*         "delegate": false,
*         "approve": false,
*         "reject": false,
*         "resubmit": false
*       },
*       "$data_source_details": null,
*       "Created_Time": "2021-05-07T06:23:10+00:00",
*       "$editable": true,
*       "City": null,
*       "No_of_Employees": null,
*       "State": null,
*       "Country": null,
*       "Created_By": {
*         "name": "patricia patricia",
*         "id": "738964000000291009",
*         "email": "patricia.ss@zylker.com"
*       },
*       "Annual_Revenue": null,
*       "Secondary_Email": null,
*       "Description": null,
*       "Rating": null,
*       "$review_process": {
*         "approve": false,
*         "reject": false,
*         "resubmit": false
*       },
*       "Website": null,
*       "Twitter": null,
*       "$canvas_id": null,
*       "Salutation": null,
*       "First_Name": null,
*       "Lead_Status": null,
*       "Full_Name": "sample",
*       "Record_Image": null,
*       "Modified_By": {
*         "name": "patricia patricia",
*         "id": "738964000000291009",
*         "email": "patricia.ss@zylker.com"
*       },
*       "$review": null,
*       "Lead_Conversion_Time": null,
*       "Skype_ID": null,
*       "Phone": null,
*       "HIPAA": null,
*       "Email_Opt_Out": false,
*       "Designation": null,
*       "Modified_Time": "2021-05-07T06:23:10+00:00",
*       "$converted_detail": {},
*       "Unsubscribed_Time": null,
*       "Mobile": "9898989898",
*       "$orchestration": false,
*       "$stop_processing": false,
*       "Last_Name": "sample",
*       "$in_merge": false,
*       "Lead_Source": null,
*       "Tag": [
*       ],
*       "Fax": null,
*       "$approval_state": "approved",
*       "$has_more": {
*         "Interested_Leads": false,
*         "multiuser": false
*       }
*     }
*   ]
* }

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

i = 0
lnCount_i = loJResp.SizeOfArray("data")
DO WHILE i < lnCount_i
    loJResp.I = i
    lcName = loJResp.StringOf("data[i].Owner.name")
    lcId = loJResp.StringOf("data[i].Owner.id")
    lcV_Email = loJResp.StringOf("data[i].Owner.email")
    lcCompany = loJResp.StringOf("data[i].Company")
    lcV_Email = loJResp.StringOf("data[i].Email")
    lcScurrency_symbol = loJResp.StringOf("data[i].$currency_symbol")
    lcImage123 = loJResp.StringOf("data[i].Image123")
    lcSsharing_permission = loJResp.StringOf("data[i].$sharing_permission")
    lcImage = loJResp.StringOf("data[i].Image")
    lcLast_Activity_Time = loJResp.StringOf("data[i].Last_Activity_Time")
    lcIndustry = loJResp.StringOf("data[i].Industry")
    lcSstate = loJResp.StringOf("data[i].$state")
    lcUnsubscribed_Mode = loJResp.StringOf("data[i].Unsubscribed_Mode")
    lnSconverted = loJResp.BoolOf("data[i].$converted")
    lnSprocess_flow = loJResp.BoolOf("data[i].$process_flow")
    lnExchange_Rate = loJResp.IntOf("data[i].Exchange_Rate")
    lcV_Currency = loJResp.StringOf("data[i].Currency")
    lcStreet = loJResp.StringOf("data[i].Street")
    lcZip_Code = loJResp.StringOf("data[i].Zip_Code")
    lcData_Processing_Basis_Details = loJResp.StringOf("data[i].Data_Processing_Basis_Details")
    lcId = loJResp.StringOf("data[i].id")
    lcData_Source = loJResp.StringOf("data[i].Data_Source")
    lnSapproved = loJResp.BoolOf("data[i].$approved")
    lnDelegate = loJResp.BoolOf("data[i].$approval.delegate")
    lnApprove = loJResp.BoolOf("data[i].$approval.approve")
    lnReject = loJResp.BoolOf("data[i].$approval.reject")
    lnResubmit = loJResp.BoolOf("data[i].$approval.resubmit")
    lcSdata_source_details = loJResp.StringOf("data[i].$data_source_details")
    lcCreated_Time = loJResp.StringOf("data[i].Created_Time")
    lnSeditable = loJResp.BoolOf("data[i].$editable")
    lcCity = loJResp.StringOf("data[i].City")
    lcNo_of_Employees = loJResp.StringOf("data[i].No_of_Employees")
    lcState = loJResp.StringOf("data[i].State")
    lcCountry = loJResp.StringOf("data[i].Country")
    lcCreated_ByName = loJResp.StringOf("data[i].Created_By.name")
    lcCreated_ById = loJResp.StringOf("data[i].Created_By.id")
    lcCreated_ByEmail = loJResp.StringOf("data[i].Created_By.email")
    lcAnnual_Revenue = loJResp.StringOf("data[i].Annual_Revenue")
    lcSecondary_Email = loJResp.StringOf("data[i].Secondary_Email")
    lcDescription = loJResp.StringOf("data[i].Description")
    lcRating = loJResp.StringOf("data[i].Rating")
    lnSreview_processApprove = loJResp.BoolOf("data[i].$review_process.approve")
    lnSreview_processReject = loJResp.BoolOf("data[i].$review_process.reject")
    lnSreview_processResubmit = loJResp.BoolOf("data[i].$review_process.resubmit")
    lcWebsite = loJResp.StringOf("data[i].Website")
    lcTwitter = loJResp.StringOf("data[i].Twitter")
    lcScanvas_id = loJResp.StringOf("data[i].$canvas_id")
    lcSalutation = loJResp.StringOf("data[i].Salutation")
    lcFirst_Name = loJResp.StringOf("data[i].First_Name")
    lcLead_Status = loJResp.StringOf("data[i].Lead_Status")
    lcFull_Name = loJResp.StringOf("data[i].Full_Name")
    lcRecord_Image = loJResp.StringOf("data[i].Record_Image")
    lcModified_ByName = loJResp.StringOf("data[i].Modified_By.name")
    lcModified_ById = loJResp.StringOf("data[i].Modified_By.id")
    lcModified_ByEmail = loJResp.StringOf("data[i].Modified_By.email")
    lcSreview = loJResp.StringOf("data[i].$review")
    lcLead_Conversion_Time = loJResp.StringOf("data[i].Lead_Conversion_Time")
    lcSkype_ID = loJResp.StringOf("data[i].Skype_ID")
    lcPhone = loJResp.StringOf("data[i].Phone")
    lcHIPAA = loJResp.StringOf("data[i].HIPAA")
    lnEmail_Opt_Out = loJResp.BoolOf("data[i].Email_Opt_Out")
    lcDesignation = loJResp.StringOf("data[i].Designation")
    lcModified_Time = loJResp.StringOf("data[i].Modified_Time")
    lcUnsubscribed_Time = loJResp.StringOf("data[i].Unsubscribed_Time")
    lcMobile = loJResp.StringOf("data[i].Mobile")
    lnSorchestration = loJResp.BoolOf("data[i].$orchestration")
    lnSstop_processing = loJResp.BoolOf("data[i].$stop_processing")
    lcLast_Name = loJResp.StringOf("data[i].Last_Name")
    lnSin_merge = loJResp.BoolOf("data[i].$in_merge")
    lcLead_Source = loJResp.StringOf("data[i].Lead_Source")
    lcFax = loJResp.StringOf("data[i].Fax")
    lcSapproval_state = loJResp.StringOf("data[i].$approval_state")
    lnInterested_Leads = loJResp.BoolOf("data[i].$has_more.Interested_Leads")
    lnMultiuser = loJResp.BoolOf("data[i].$has_more.multiuser")
    j = 0
    lnCount_j = loJResp.SizeOfArray("data[i].Interested_Leads")
    DO WHILE j < lnCount_j
        loJResp.J = j
        j = j + 1
    ENDDO
    j = 0
    lnCount_j = loJResp.SizeOfArray("data[i].multiuser")
    DO WHILE j < lnCount_j
        loJResp.J = j
        j = j + 1
    ENDDO
    j = 0
    lnCount_j = loJResp.SizeOfArray("data[i].Tag")
    DO WHILE j < lnCount_j
        loJResp.J = j
        j = j + 1
    ENDDO
    i = i + 1
ENDDO

RELEASE loHttp
RELEASE loSbResponseBody
RELEASE loJResp

Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2.1/Leads/{{record_id}}

Postman Collection Item JSON

{
  "name": "Subforms",
  "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}}",
      "host": [
        "{{api-domain}}"
      ],
      "path": [
        "crm",
        "v2.1",
        "Leads",
        "{{record_id}}"
      ]
    },
    "description": "To get the subform data in a record."
  },
  "response": [
    {
      "name": "SUCCESS RESPONSE",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads/738964000002131001",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads",
            "738964000002131001"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Fri, 07 May 2021 06:32:59 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-07T06:44:53+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4016256"
        },
        {
          "key": "clientsubVersion",
          "value": "8ef7aa3133ce0e105307c407d89b23d9"
        },
        {
          "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 patricia\",\n                \"id\": \"738964000000291009\",\n                \"email\": \"patricia.ss@zylker.com\"\n            },\n            \"Company\": null,\n            \"Email\": null,\n            \"$currency_symbol\": \"Af\",\n            \"Interested_Leads\": [],\n            \"Image123\": null,\n            \"$sharing_permission\": \"full_access\",\n            \"Image\": null,\n            \"Last_Activity_Time\": null,\n            \"Industry\": null,\n            \"$state\": \"save\",\n            \"Unsubscribed_Mode\": null,\n            \"$converted\": false,\n            \"$process_flow\": false,\n            \"Exchange_Rate\": 1,\n            \"Currency\": \"AFN\",\n            \"Street\": null,\n            \"Zip_Code\": null,\n            \"multiuser\": [],\n            \"Data_Processing_Basis_Details\": null,\n            \"id\": \"738964000002131001\",\n            \"Data_Source\": \"Manual\",\n            \"$approved\": true,\n            \"$approval\": {\n                \"delegate\": false,\n                \"approve\": false,\n                \"reject\": false,\n                \"resubmit\": false\n            },\n            \"$data_source_details\": null,\n            \"Created_Time\": \"2021-05-07T06:23:10+00:00\",\n            \"$editable\": true,\n            \"City\": null,\n            \"No_of_Employees\": null,\n            \"State\": null,\n            \"Country\": null,\n            \"Created_By\": {\n                \"name\": \"patricia patricia\",\n                \"id\": \"738964000000291009\",\n                \"email\": \"patricia.ss@zylker.com\"\n            },\n            \"Annual_Revenue\": null,\n            \"Secondary_Email\": null,\n            \"Description\": null,\n            \"Rating\": null,\n            \"$review_process\": {\n                \"approve\": false,\n                \"reject\": false,\n                \"resubmit\": false\n            },\n            \"Website\": null,\n            \"Twitter\": null,\n            \"$canvas_id\": null,\n            \"Salutation\": null,\n            \"First_Name\": null,\n            \"Lead_Status\": null,\n            \"Full_Name\": \"sample\",\n            \"Record_Image\": null,\n            \"Modified_By\": {\n                \"name\": \"patricia patricia\",\n                \"id\": \"738964000000291009\",\n                \"email\": \"patricia.ss@zylker.com\"\n            },\n            \"$review\": null,\n            \"Lead_Conversion_Time\": null,\n            \"Skype_ID\": null,\n            \"Phone\": null,\n            \"HIPAA\": null,\n            \"Email_Opt_Out\": false,\n            \"Designation\": null,\n            \"Modified_Time\": \"2021-05-07T06:23:10+00:00\",\n            \"$converted_detail\": {},\n            \"Unsubscribed_Time\": null,\n            \"Mobile\": \"9898989898\",\n            \"$orchestration\": false,\n            \"$stop_processing\": false,\n            \"Last_Name\": \"sample\",\n            \"$in_merge\": false,\n            \"Lead_Source\": null,\n            \"Tag\": [],\n            \"Fax\": null,\n            \"$approval_state\": \"approved\",\n            \"$has_more\": {\n                \"Interested_Leads\": false,\n                \"multiuser\": false\n            }\n        }\n    ]\n}"
    },
    {
      "name": "INVALID_MODULE",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Lead/738964000002131001",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Lead",
            "738964000002131001"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Fri, 07 May 2021 06:33:30 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-07T06:44:53+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4016256"
        },
        {
          "key": "clientsubVersion",
          "value": "8ef7aa3133ce0e105307c407d89b23d9"
        },
        {
          "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_REQUEST_METHOD",
      "originalRequest": {
        "method": "COPY",
        "header": [
        ],
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads/738964000002131001",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads",
            "738964000002131001"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Fri, 07 May 2021 06:34: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.1/Leads/738964000002131001",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads",
            "738964000002131001"
          ]
        }
      },
      "status": "Unauthorized",
      "code": 401,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Fri, 07 May 2021 06:34:28 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": "INVALID_REQUEST",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{api-domain}}/crm/v2.1/Leads/{{record_id}}",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2.1",
            "Leads",
            "{{record_id}}"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Thu, 13 May 2021 06:51:53 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "192"
        },
        {
          "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\": \"INVALID_REQUEST\",\n    \"details\": {},\n    \"message\": \"unable to process your request. please verify whether you have entered proper method name, parameter and parameter values.\",\n    \"status\": \"error\"\n}"
    }
  ]
}