Chilkat Online Tools

DataFlex / easybill REST API / Fetch customer contact list

Back to Collection Items

Use ChilkatAx-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Variant vQueryParams
    Handle hoQueryParams
    Variant vResp
    Handle hoResp
    Variant vSbResponseBody
    Handle hoSbResponseBody
    Handle hoJResp
    Integer iRespStatusCode
    String sCity
    String sStreet
    String sState
    String sCompany_name
    String sCountry
    String sDepartment
    String sFax
    String sFirst_name
    String sId
    String sLast_name
    String sLogin_id
    String sMobile
    String sNote
    Boolean iPersonal
    String sPhone_1
    String sPhone_2
    String sSalutation
    String sSuffix_1
    String sSuffix_2
    String sTitle
    String sZip_code
    String sCreated_at
    String sUpdated_at
    String sPage
    String sPages
    String sLimit
    String sTotal
    Integer i
    Integer iCount_i
    String sTemp1
    Boolean bTemp1

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

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    Get Create (RefClass(cComChilkatJsonObject)) To hoQueryParams
    If (Not(IsComObjectCreated(hoQueryParams))) Begin
        Send CreateComObject of hoQueryParams
    End
    Get ComUpdateString Of hoQueryParams "limit" "<integer>" To iSuccess
    Get ComUpdateString Of hoQueryParams "page" "<integer>" To iSuccess

    Send ComSetRequestHeader To hoHttp "Authorization" "{{apiKey}}"
    Send ComSetRequestHeader To hoHttp "Accept" "application/json"

    Get pvComObject of hoQueryParams to vQueryParams
    Get ComQuickRequestParams Of hoHttp "GET" "https://api.easybill.de/rest/v1/customers/:customerId/contacts" vQueryParams To vResp
    If (IsComObject(vResp)) Begin
        Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
        Set pvComObject Of hoResp To vResp
    End
    Get ComLastMethodSuccess Of hoHttp To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody
    If (Not(IsComObjectCreated(hoSbResponseBody))) Begin
        Send CreateComObject of hoSbResponseBody
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComGetBodySb Of hoResp vSbResponseBody To iSuccess

    Get Create (RefClass(cComChilkatJsonObject)) To hoJResp
    If (Not(IsComObjectCreated(hoJResp))) Begin
        Send CreateComObject of hoJResp
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComLoadSb Of hoJResp vSbResponseBody To iSuccess
    Set ComEmitCompact Of hoJResp To False

    Showln "Response Body:"
    Get ComEmit Of hoJResp To sTemp1
    Showln sTemp1

    Get ComStatusCode Of hoResp To iRespStatusCode
    Showln "Response Status Code = " iRespStatusCode
    If (iRespStatusCode >= 400) Begin
        Showln "Response Header:"
        Get ComHeader Of hoResp To sTemp1
        Showln sTemp1
        Showln "Failed."
        Send Destroy of hoResp
        Procedure_Return
    End

    Send Destroy of hoResp

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

    // {
    //   "page": "<integer>",
    //   "pages": "<integer>",
    //   "limit": "<integer>",
    //   "total": "<integer>",
    //   "items": [
    //     {
    //       "city": "<string>",
    //       "street": "<string>",
    //       "state": "<string>",
    //       "company_name": "<string>",
    //       "country": "<string>",
    //       "department": null,
    //       "fax": null,
    //       "first_name": null,
    //       "id": "<long>",
    //       "last_name": null,
    //       "login_id": "<long>",
    //       "mobile": null,
    //       "note": null,
    //       "personal": false,
    //       "phone_1": null,
    //       "phone_2": null,
    //       "salutation": "<integer>",
    //       "suffix_1": null,
    //       "suffix_2": null,
    //       "title": null,
    //       "zip_code": null,
    //       "created_at": "<string>",
    //       "updated_at": "<string>"
    //     },
    //     {
    //       "city": "<string>",
    //       "street": "<string>",
    //       "state": "<string>",
    //       "company_name": "<string>",
    //       "country": "<string>",
    //       "department": null,
    //       "fax": null,
    //       "first_name": null,
    //       "id": "<long>",
    //       "last_name": null,
    //       "login_id": "<long>",
    //       "mobile": null,
    //       "note": null,
    //       "personal": false,
    //       "phone_1": null,
    //       "phone_2": null,
    //       "salutation": "<integer>",
    //       "suffix_1": null,
    //       "suffix_2": null,
    //       "title": null,
    //       "zip_code": null,
    //       "created_at": "<string>",
    //       "updated_at": "<string>"
    //     }
    //   ]
    // }

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

    Get ComStringOf Of hoJResp "page" To sPage
    Get ComStringOf Of hoJResp "pages" To sPages
    Get ComStringOf Of hoJResp "limit" To sLimit
    Get ComStringOf Of hoJResp "total" To sTotal
    Move 0 To i
    Get ComSizeOfArray Of hoJResp "items" To iCount_i
    While (i < iCount_i)
        Set ComI Of hoJResp To i
        Get ComStringOf Of hoJResp "items[i].city" To sCity
        Get ComStringOf Of hoJResp "items[i].street" To sStreet
        Get ComStringOf Of hoJResp "items[i].state" To sState
        Get ComStringOf Of hoJResp "items[i].company_name" To sCompany_name
        Get ComStringOf Of hoJResp "items[i].country" To sCountry
        Get ComStringOf Of hoJResp "items[i].department" To sDepartment
        Get ComStringOf Of hoJResp "items[i].fax" To sFax
        Get ComStringOf Of hoJResp "items[i].first_name" To sFirst_name
        Get ComStringOf Of hoJResp "items[i].id" To sId
        Get ComStringOf Of hoJResp "items[i].last_name" To sLast_name
        Get ComStringOf Of hoJResp "items[i].login_id" To sLogin_id
        Get ComStringOf Of hoJResp "items[i].mobile" To sMobile
        Get ComStringOf Of hoJResp "items[i].note" To sNote
        Get ComBoolOf Of hoJResp "items[i].personal" To iPersonal
        Get ComStringOf Of hoJResp "items[i].phone_1" To sPhone_1
        Get ComStringOf Of hoJResp "items[i].phone_2" To sPhone_2
        Get ComStringOf Of hoJResp "items[i].salutation" To sSalutation
        Get ComStringOf Of hoJResp "items[i].suffix_1" To sSuffix_1
        Get ComStringOf Of hoJResp "items[i].suffix_2" To sSuffix_2
        Get ComStringOf Of hoJResp "items[i].title" To sTitle
        Get ComStringOf Of hoJResp "items[i].zip_code" To sZip_code
        Get ComStringOf Of hoJResp "items[i].created_at" To sCreated_at
        Get ComStringOf Of hoJResp "items[i].updated_at" To sUpdated_at
        Move (i + 1) To i
    Loop



End_Procedure

Curl Command

curl -G -d "limit=%3Cinteger%3E"
	-d "page=%3Cinteger%3E"
	-H "Authorization: {{apiKey}}"
	-H "Accept: application/json"
https://api.easybill.de/rest/v1/customers/:customerId/contacts

Postman Collection Item JSON

{
  "name": "Fetch customer contact list",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/customers/:customerId/contacts?limit=<integer>&page=<integer>",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "customers",
        ":customerId",
        "contacts"
      ],
      "query": [
        {
          "key": "limit",
          "value": "<integer>",
          "description": "Limited the result. Default is 100. Maximum can be 1000."
        },
        {
          "key": "page",
          "value": "<integer>",
          "description": "Set current Page. Default is 1."
        }
      ],
      "variable": [
        {
          "key": "customerId",
          "value": "<long>",
          "description": "(Required) ID of customer that needs to be fetched"
        }
      ]
    }
  },
  "response": [
    {
      "name": "Successful operation",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: apikey",
            "key": "Authorization",
            "value": "<API Key>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/customers/:customerId/contacts?limit=<integer>&page=<integer>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "customers",
            ":customerId",
            "contacts"
          ],
          "query": [
            {
              "key": "limit",
              "value": "<integer>",
              "description": "Limited the result. Default is 100. Maximum can be 1000."
            },
            {
              "key": "page",
              "value": "<integer>",
              "description": "Set current Page. Default is 1."
            }
          ],
          "variable": [
            {
              "key": "customerId"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"page\": \"<integer>\",\n  \"pages\": \"<integer>\",\n  \"limit\": \"<integer>\",\n  \"total\": \"<integer>\",\n  \"items\": [\n    {\n      \"city\": \"<string>\",\n      \"street\": \"<string>\",\n      \"state\": \"<string>\",\n      \"company_name\": \"<string>\",\n      \"country\": \"<string>\",\n      \"department\": null,\n      \"fax\": null,\n      \"first_name\": null,\n      \"id\": \"<long>\",\n      \"last_name\": null,\n      \"login_id\": \"<long>\",\n      \"mobile\": null,\n      \"note\": null,\n      \"personal\": false,\n      \"phone_1\": null,\n      \"phone_2\": null,\n      \"salutation\": \"<integer>\",\n      \"suffix_1\": null,\n      \"suffix_2\": null,\n      \"title\": null,\n      \"zip_code\": null,\n      \"created_at\": \"<string>\",\n      \"updated_at\": \"<string>\"\n    },\n    {\n      \"city\": \"<string>\",\n      \"street\": \"<string>\",\n      \"state\": \"<string>\",\n      \"company_name\": \"<string>\",\n      \"country\": \"<string>\",\n      \"department\": null,\n      \"fax\": null,\n      \"first_name\": null,\n      \"id\": \"<long>\",\n      \"last_name\": null,\n      \"login_id\": \"<long>\",\n      \"mobile\": null,\n      \"note\": null,\n      \"personal\": false,\n      \"phone_1\": null,\n      \"phone_2\": null,\n      \"salutation\": \"<integer>\",\n      \"suffix_1\": null,\n      \"suffix_2\": null,\n      \"title\": null,\n      \"zip_code\": null,\n      \"created_at\": \"<string>\",\n      \"updated_at\": \"<string>\"\n    }\n  ]\n}"
    },
    {
      "name": "Too Many Requests",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: apikey",
            "key": "Authorization",
            "value": "<API Key>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/customers/:customerId/contacts?limit=<integer>&page=<integer>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "customers",
            ":customerId",
            "contacts"
          ],
          "query": [
            {
              "key": "limit",
              "value": "<integer>",
              "description": "Limited the result. Default is 100. Maximum can be 1000."
            },
            {
              "key": "page",
              "value": "<integer>",
              "description": "Set current Page. Default is 1."
            }
          ],
          "variable": [
            {
              "key": "customerId"
            }
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "text",
      "header": [
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}