Chilkat Online Tools

SQL Server / Zoho CRM REST APIs / Accounts

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/Accounts', @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": "738964000000291009",
    --         "email": "patricia.ss@zylker.com"
    --       },
    --       "$currency_symbol": "Af",
    --       "Account_Type": null,
    --       "SIC_Code": null,
    --       "Last_Activity_Time": "2021-05-07T06:19:49+00:00",
    --       "Industry": null,
    --       "Account_Site": null,
    --       "$state": "save",
    --       "$process_flow": false,
    --       "Exchange_Rate": 1,
    --       "Billing_Country": null,
    --       "Currency": "AFN",
    --       "id": "738964000002058030",
    --       "$approved": true,
    --       "$approval": {
    --         "delegate": false,
    --         "approve": false,
    --         "reject": false,
    --         "resubmit": false
    --       },
    --       "Billing_Street": null,
    --       "Created_Time": "2021-04-21T08:53:58+00:00",
    --       "$editable": true,
    --       "Billing_Code": "1234",
    --       "Shipping_City": null,
    --       "Shipping_Country": null,
    --       "Shipping_Code": null,
    --       "Billing_City": null,
    --       "Created_By": {
    --         "name": "Patricia Boyle",
    --         "id": "738964000000291009",
    --         "email": "patricia.ss@zylker.com"
    --       },
    --       "Annual_Revenue": 1,
    --       "Shipping_Street": null,
    --       "territory_updated_time": null,
    --       "Ownership": null,
    --       "Description": null,
    --       "Rating": null,
    --       "Shipping_State": null,
    --       "$review_process": {
    --         "approve": false,
    --         "reject": false,
    --         "resubmit": false
    --       },
    --       "Website": "https://yaythisworked.com",
    --       "Employees": null,
    --       "Record_Image": null,
    --       "Modified_By": {
    --         "name": "Patricia Boyle",
    --         "id": "738964000000291009",
    --         "email": "patricia.ss@zylker.com"
    --       },
    --       "$review": null,
    --       "Phone": null,
    --       "Account_Name": "Villa Margarita",
    --       "Account_Number": "0",
    --       "Ticker_Symbol": null,
    --       "Modified_Time": "2021-05-07T06:19:48+00:00",
    --       "Territories": [
    --         "South Zone"
    --       ],
    --       "$orchestration": false,
    --       "Parent_Account": null,
    --       "$in_merge": false,
    --       "Billing_State": "Colorado",
    --       "Tag": [
    --       ],
    --       "Fax": null,
    --       "$approval_state": "approved"
    --     }
    --   ],
    --   "info": {
    --     "per_page": 200,
    --     "count": 1,
    --     "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 @Scurrency_symbol nvarchar(4000)

    DECLARE @Account_Type nvarchar(4000)

    DECLARE @SIC_Code nvarchar(4000)

    DECLARE @Last_Activity_Time nvarchar(4000)

    DECLARE @Industry nvarchar(4000)

    DECLARE @Account_Site nvarchar(4000)

    DECLARE @Sstate nvarchar(4000)

    DECLARE @Sprocess_flow int

    DECLARE @Exchange_Rate int

    DECLARE @Billing_Country nvarchar(4000)

    DECLARE @v_Currency nvarchar(4000)

    DECLARE @id nvarchar(4000)

    DECLARE @Sapproved int

    DECLARE @Delegate int

    DECLARE @Approve int

    DECLARE @Reject int

    DECLARE @Resubmit int

    DECLARE @Billing_Street nvarchar(4000)

    DECLARE @Created_Time nvarchar(4000)

    DECLARE @Seditable int

    DECLARE @Billing_Code nvarchar(4000)

    DECLARE @Shipping_City nvarchar(4000)

    DECLARE @Shipping_Country nvarchar(4000)

    DECLARE @Shipping_Code nvarchar(4000)

    DECLARE @Billing_City nvarchar(4000)

    DECLARE @Created_ByName nvarchar(4000)

    DECLARE @Created_ById nvarchar(4000)

    DECLARE @Created_ByEmail nvarchar(4000)

    DECLARE @Annual_Revenue int

    DECLARE @Shipping_Street nvarchar(4000)

    DECLARE @territory_updated_time nvarchar(4000)

    DECLARE @Ownership nvarchar(4000)

    DECLARE @Description nvarchar(4000)

    DECLARE @Rating nvarchar(4000)

    DECLARE @Shipping_State nvarchar(4000)

    DECLARE @Sreview_processApprove int

    DECLARE @Sreview_processReject int

    DECLARE @Sreview_processResubmit int

    DECLARE @Website nvarchar(4000)

    DECLARE @Employees nvarchar(4000)

    DECLARE @Record_Image nvarchar(4000)

    DECLARE @Modified_ByName nvarchar(4000)

    DECLARE @Modified_ById nvarchar(4000)

    DECLARE @Modified_ByEmail nvarchar(4000)

    DECLARE @Sreview nvarchar(4000)

    DECLARE @Phone nvarchar(4000)

    DECLARE @Account_Name nvarchar(4000)

    DECLARE @Account_Number nvarchar(4000)

    DECLARE @Ticker_Symbol nvarchar(4000)

    DECLARE @Modified_Time nvarchar(4000)

    DECLARE @Sorchestration int

    DECLARE @Parent_Account nvarchar(4000)

    DECLARE @Sin_merge int

    DECLARE @Billing_State nvarchar(4000)

    DECLARE @Fax nvarchar(4000)

    DECLARE @Sapproval_state nvarchar(4000)

    DECLARE @j int

    DECLARE @count_j int

    DECLARE @strVal 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', @Scurrency_symbol OUT, 'data[i].$currency_symbol'
        EXEC sp_OAMethod @jResp, 'StringOf', @Account_Type OUT, 'data[i].Account_Type'
        EXEC sp_OAMethod @jResp, 'StringOf', @SIC_Code OUT, 'data[i].SIC_Code'
        EXEC sp_OAMethod @jResp, 'StringOf', @Last_Activity_Time OUT, 'data[i].Last_Activity_Time'
        EXEC sp_OAMethod @jResp, 'StringOf', @Industry OUT, 'data[i].Industry'
        EXEC sp_OAMethod @jResp, 'StringOf', @Account_Site OUT, 'data[i].Account_Site'
        EXEC sp_OAMethod @jResp, 'StringOf', @Sstate OUT, 'data[i].$state'
        EXEC sp_OAMethod @jResp, 'BoolOf', @Sprocess_flow OUT, 'data[i].$process_flow'
        EXEC sp_OAMethod @jResp, 'IntOf', @Exchange_Rate OUT, 'data[i].Exchange_Rate'
        EXEC sp_OAMethod @jResp, 'StringOf', @Billing_Country OUT, 'data[i].Billing_Country'
        EXEC sp_OAMethod @jResp, 'StringOf', @v_Currency OUT, 'data[i].Currency'
        EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, 'data[i].id'
        EXEC sp_OAMethod @jResp, 'BoolOf', @Sapproved OUT, 'data[i].$approved'
        EXEC sp_OAMethod @jResp, 'BoolOf', @Delegate OUT, 'data[i].$approval.delegate'
        EXEC sp_OAMethod @jResp, 'BoolOf', @Approve OUT, 'data[i].$approval.approve'
        EXEC sp_OAMethod @jResp, 'BoolOf', @Reject OUT, 'data[i].$approval.reject'
        EXEC sp_OAMethod @jResp, 'BoolOf', @Resubmit OUT, 'data[i].$approval.resubmit'
        EXEC sp_OAMethod @jResp, 'StringOf', @Billing_Street OUT, 'data[i].Billing_Street'
        EXEC sp_OAMethod @jResp, 'StringOf', @Created_Time OUT, 'data[i].Created_Time'
        EXEC sp_OAMethod @jResp, 'BoolOf', @Seditable OUT, 'data[i].$editable'
        EXEC sp_OAMethod @jResp, 'StringOf', @Billing_Code OUT, 'data[i].Billing_Code'
        EXEC sp_OAMethod @jResp, 'StringOf', @Shipping_City OUT, 'data[i].Shipping_City'
        EXEC sp_OAMethod @jResp, 'StringOf', @Shipping_Country OUT, 'data[i].Shipping_Country'
        EXEC sp_OAMethod @jResp, 'StringOf', @Shipping_Code OUT, 'data[i].Shipping_Code'
        EXEC sp_OAMethod @jResp, 'StringOf', @Billing_City OUT, 'data[i].Billing_City'
        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, 'IntOf', @Annual_Revenue OUT, 'data[i].Annual_Revenue'
        EXEC sp_OAMethod @jResp, 'StringOf', @Shipping_Street OUT, 'data[i].Shipping_Street'
        EXEC sp_OAMethod @jResp, 'StringOf', @territory_updated_time OUT, 'data[i].territory_updated_time'
        EXEC sp_OAMethod @jResp, 'StringOf', @Ownership OUT, 'data[i].Ownership'
        EXEC sp_OAMethod @jResp, 'StringOf', @Description OUT, 'data[i].Description'
        EXEC sp_OAMethod @jResp, 'StringOf', @Rating OUT, 'data[i].Rating'
        EXEC sp_OAMethod @jResp, 'StringOf', @Shipping_State OUT, 'data[i].Shipping_State'
        EXEC sp_OAMethod @jResp, 'BoolOf', @Sreview_processApprove OUT, 'data[i].$review_process.approve'
        EXEC sp_OAMethod @jResp, 'BoolOf', @Sreview_processReject OUT, 'data[i].$review_process.reject'
        EXEC sp_OAMethod @jResp, 'BoolOf', @Sreview_processResubmit OUT, 'data[i].$review_process.resubmit'
        EXEC sp_OAMethod @jResp, 'StringOf', @Website OUT, 'data[i].Website'
        EXEC sp_OAMethod @jResp, 'StringOf', @Employees OUT, 'data[i].Employees'
        EXEC sp_OAMethod @jResp, 'StringOf', @Record_Image OUT, 'data[i].Record_Image'
        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, 'StringOf', @Sreview OUT, 'data[i].$review'
        EXEC sp_OAMethod @jResp, 'StringOf', @Phone OUT, 'data[i].Phone'
        EXEC sp_OAMethod @jResp, 'StringOf', @Account_Name OUT, 'data[i].Account_Name'
        EXEC sp_OAMethod @jResp, 'StringOf', @Account_Number OUT, 'data[i].Account_Number'
        EXEC sp_OAMethod @jResp, 'StringOf', @Ticker_Symbol OUT, 'data[i].Ticker_Symbol'
        EXEC sp_OAMethod @jResp, 'StringOf', @Modified_Time OUT, 'data[i].Modified_Time'
        EXEC sp_OAMethod @jResp, 'BoolOf', @Sorchestration OUT, 'data[i].$orchestration'
        EXEC sp_OAMethod @jResp, 'StringOf', @Parent_Account OUT, 'data[i].Parent_Account'
        EXEC sp_OAMethod @jResp, 'BoolOf', @Sin_merge OUT, 'data[i].$in_merge'
        EXEC sp_OAMethod @jResp, 'StringOf', @Billing_State OUT, 'data[i].Billing_State'
        EXEC sp_OAMethod @jResp, 'StringOf', @Fax OUT, 'data[i].Fax'
        EXEC sp_OAMethod @jResp, 'StringOf', @Sapproval_state OUT, 'data[i].$approval_state'
        SELECT @j = 0
        EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_j OUT, 'data[i].Territories'
        WHILE @j < @count_j
          BEGIN
            EXEC sp_OASetProperty @jResp, 'J', @j
            EXEC sp_OAMethod @jResp, 'StringOf', @strVal OUT, 'data[i].Territories[j]'
            SELECT @j = @j + 1
          END
        SELECT @j = 0
        EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_j OUT, 'data[i].Tag'
        WHILE @j < @count_j
          BEGIN
            EXEC sp_OASetProperty @jResp, 'J', @j
            SELECT @j = @j + 1
          END
        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/Accounts

Postman Collection Item JSON

{
  "name": "Accounts",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{access-token}}",
          "type": "string"
        }
      ]
    },
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{api-domain}}/crm/v2/Accounts",
      "host": [
        "{{api-domain}}"
      ],
      "path": [
        "crm",
        "v2",
        "Accounts"
      ]
    },
    "description": "To get the list of available records in the Accounts module."
  },
  "response": [
    {
      "name": "P8: territory_id",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{api-domain}}/crm/v2/Accounts?territory_id=738964000001977355",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2",
            "Accounts"
          ],
          "query": [
            {
              "key": "territory_id",
              "value": "738964000001977355"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Tue, 11 May 2021 12:37:14 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-11T12:57:36+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4023320"
        },
        {
          "key": "clientsubVersion",
          "value": "4d8b6ee4f7d1d284c930a4e807480c5c"
        },
        {
          "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            \"$currency_symbol\": \"Af\",\n            \"Account_Type\": null,\n            \"SIC_Code\": null,\n            \"Last_Activity_Time\": \"2021-05-07T06:19:49+00:00\",\n            \"Industry\": null,\n            \"Account_Site\": null,\n            \"$state\": \"save\",\n            \"$process_flow\": false,\n            \"Exchange_Rate\": 1,\n            \"Billing_Country\": null,\n            \"Currency\": \"AFN\",\n            \"id\": \"738964000002058030\",\n            \"$approved\": true,\n            \"$approval\": {\n                \"delegate\": false,\n                \"approve\": false,\n                \"reject\": false,\n                \"resubmit\": false\n            },\n            \"Billing_Street\": null,\n            \"Created_Time\": \"2021-04-21T08:53:58+00:00\",\n            \"$editable\": true,\n            \"Billing_Code\": \"1234\",\n            \"Shipping_City\": null,\n            \"Shipping_Country\": null,\n            \"Shipping_Code\": null,\n            \"Billing_City\": null,\n            \"Created_By\": {\n                \"name\": \"Patricia Boyle\",\n                \"id\": \"738964000000291009\",\n                \"email\": \"patricia.ss@zylker.com\"\n            },\n            \"Annual_Revenue\": 1,\n            \"Shipping_Street\": null,\n            \"territory_updated_time\": null,\n            \"Ownership\": null,\n            \"Description\": null,\n            \"Rating\": null,\n            \"Shipping_State\": null,\n            \"$review_process\": {\n                \"approve\": false,\n                \"reject\": false,\n                \"resubmit\": false\n            },\n            \"Website\": \"https://yaythisworked.com\",\n            \"Employees\": null,\n            \"Record_Image\": null,\n            \"Modified_By\": {\n                \"name\": \"Patricia Boyle\",\n                \"id\": \"738964000000291009\",\n                \"email\": \"patricia.ss@zylker.com\"\n            },\n            \"$review\": null,\n            \"Phone\": null,\n            \"Account_Name\": \"Villa Margarita\",\n            \"Account_Number\": \"0\",\n            \"Ticker_Symbol\": null,\n            \"Modified_Time\": \"2021-05-07T06:19:48+00:00\",\n            \"Territories\": [\n                \"South Zone\"\n            ],\n            \"$orchestration\": false,\n            \"Parent_Account\": null,\n            \"$in_merge\": false,\n            \"Billing_State\": \"Colorado\",\n            \"Tag\": [],\n            \"Fax\": null,\n            \"$approval_state\": \"approved\"\n        }\n    ],\n    \"info\": {\n        \"per_page\": 200,\n        \"count\": 1,\n        \"page\": 1,\n        \"more_records\": false\n    }\n}"
    },
    {
      "name": "P9: include_child",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{api-domain}}/crm/v2/Accounts?territory_id=738964000001977355&include_child=true",
          "host": [
            "{{api-domain}}"
          ],
          "path": [
            "crm",
            "v2",
            "Accounts"
          ],
          "query": [
            {
              "key": "territory_id",
              "value": "738964000001977355"
            },
            {
              "key": "include_child",
              "value": "true"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "ZGS"
        },
        {
          "key": "Date",
          "value": "Tue, 11 May 2021 12:37:35 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-11T12:57:36+00:00"
        },
        {
          "key": "clientVersion",
          "value": "4023320"
        },
        {
          "key": "clientsubVersion",
          "value": "4d8b6ee4f7d1d284c930a4e807480c5c"
        },
        {
          "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            \"$currency_symbol\": \"Af\",\n            \"Account_Type\": null,\n            \"SIC_Code\": null,\n            \"Last_Activity_Time\": \"2021-05-07T06:19:49+00:00\",\n            \"Industry\": null,\n            \"Account_Site\": null,\n            \"$state\": \"save\",\n            \"$process_flow\": false,\n            \"Exchange_Rate\": 1,\n            \"Billing_Country\": null,\n            \"Currency\": \"AFN\",\n            \"id\": \"738964000002058030\",\n            \"$approved\": true,\n            \"$approval\": {\n                \"delegate\": false,\n                \"approve\": false,\n                \"reject\": false,\n                \"resubmit\": false\n            },\n            \"Billing_Street\": null,\n            \"Created_Time\": \"2021-04-21T08:53:58+00:00\",\n            \"$editable\": true,\n            \"Billing_Code\": \"1234\",\n            \"Shipping_City\": null,\n            \"Shipping_Country\": null,\n            \"Shipping_Code\": null,\n            \"Billing_City\": null,\n            \"Created_By\": {\n                \"name\": \"Patricia Boyle\",\n                \"id\": \"738964000000291009\",\n                \"email\": \"patricia.ss@zylker.com\"\n            },\n            \"Annual_Revenue\": 1,\n            \"Shipping_Street\": null,\n            \"territory_updated_time\": null,\n            \"Ownership\": null,\n            \"Description\": null,\n            \"Rating\": null,\n            \"Shipping_State\": null,\n            \"$review_process\": {\n                \"approve\": false,\n                \"reject\": false,\n                \"resubmit\": false\n            },\n            \"Website\": \"https://yaythisworked.com\",\n            \"Employees\": null,\n            \"Record_Image\": null,\n            \"Modified_By\": {\n                \"name\": \"Patricia Boyle\",\n                \"id\": \"738964000000291009\",\n                \"email\": \"patricia.ss@zylker.com\"\n            },\n            \"$review\": null,\n            \"Phone\": null,\n            \"Account_Name\": \"Villa Margarita\",\n            \"Account_Number\": \"0\",\n            \"Ticker_Symbol\": null,\n            \"Modified_Time\": \"2021-05-07T06:19:48+00:00\",\n            \"Territories\": [\n                \"South Zone\"\n            ],\n            \"$orchestration\": false,\n            \"Parent_Account\": null,\n            \"$in_merge\": false,\n            \"Billing_State\": \"Colorado\",\n            \"Tag\": [],\n            \"Fax\": null,\n            \"$approval_state\": \"approved\"\n        }\n    ],\n    \"info\": {\n        \"per_page\": 200,\n        \"count\": 1,\n        \"page\": 1,\n        \"more_records\": false\n    }\n}"
    }
  ]
}