Chilkat Online Tools

Foxpro / easybill REST API / Fetch a list of serial numbers for positions

Back to Collection Items

LOCAL loHttp
LOCAL lnSuccess
LOCAL loQueryParams
LOCAL loResp
LOCAL loSbResponseBody
LOCAL loJResp
LOCAL lnRespStatusCode
LOCAL lcSerial_number
LOCAL lcPosition_id
LOCAL lcId
LOCAL lcDocument_id
LOCAL lcDocument_position_id
LOCAL lcUsed_at
LOCAL lcCreated_at
LOCAL lcPage
LOCAL lcPages
LOCAL lcLimit
LOCAL lcTotal
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')

* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.JsonObject')
loQueryParams = CreateObject('Chilkat.JsonObject')
loQueryParams.UpdateString("limit","<integer>")
loQueryParams.UpdateString("page","<integer>")
loQueryParams.UpdateString("position_id","<string>")
loQueryParams.UpdateString("document_id","<string>")
loQueryParams.UpdateString("in_use","<boolean>")

loHttp.SetRequestHeader("Authorization","{{apiKey}}")
loHttp.SetRequestHeader("Accept","application/json")

loResp = loHttp.QuickRequestParams("GET","https://api.easybill.de/rest/v1/serial-numbers",loQueryParams)
IF (loHttp.LastMethodSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    RELEASE loQueryParams
    CANCEL
ENDIF

* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.StringBuilder')
loSbResponseBody = CreateObject('Chilkat.StringBuilder')
loResp.GetBodySb(loSbResponseBody)

* 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 = loResp.StatusCode
? "Response Status Code = " + STR(lnRespStatusCode)
IF (lnRespStatusCode >= 400) THEN
    ? "Response Header:"
    ? loResp.Header
    ? "Failed."
    RELEASE loResp
    RELEASE loHttp
    RELEASE loQueryParams
    RELEASE loSbResponseBody
    RELEASE loJResp
    CANCEL
ENDIF

RELEASE loResp

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

* {
*   "page": "<integer>",
*   "pages": "<integer>",
*   "limit": "<integer>",
*   "total": "<integer>",
*   "items": [
*     {
*       "serial_number": "<string>",
*       "position_id": "<integer>",
*       "id": "<long>",
*       "document_id": "<long>",
*       "document_position_id": "<long>",
*       "used_at": "<string>",
*       "created_at": "<string>"
*     },
*     {
*       "serial_number": "<string>",
*       "position_id": "<integer>",
*       "id": "<long>",
*       "document_id": "<long>",
*       "document_position_id": "<long>",
*       "used_at": "<string>",
*       "created_at": "<string>"
*     }
*   ]
* }

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

lcPage = loJResp.StringOf("page")
lcPages = loJResp.StringOf("pages")
lcLimit = loJResp.StringOf("limit")
lcTotal = loJResp.StringOf("total")
i = 0
lnCount_i = loJResp.SizeOfArray("items")
DO WHILE i < lnCount_i
    loJResp.I = i
    lcSerial_number = loJResp.StringOf("items[i].serial_number")
    lcPosition_id = loJResp.StringOf("items[i].position_id")
    lcId = loJResp.StringOf("items[i].id")
    lcDocument_id = loJResp.StringOf("items[i].document_id")
    lcDocument_position_id = loJResp.StringOf("items[i].document_position_id")
    lcUsed_at = loJResp.StringOf("items[i].used_at")
    lcCreated_at = loJResp.StringOf("items[i].created_at")
    i = i + 1
ENDDO

RELEASE loHttp
RELEASE loQueryParams
RELEASE loSbResponseBody
RELEASE loJResp

Curl Command

curl -G -d "limit=%3Cinteger%3E"
	-d "page=%3Cinteger%3E"
	-d "position_id=%3Cstring%3E"
	-d "document_id=%3Cstring%3E"
	-d "in_use=%3Cboolean%3E"
	-H "Authorization: {{apiKey}}"
	-H "Accept: application/json"
https://api.easybill.de/rest/v1/serial-numbers

Postman Collection Item JSON

{
  "name": "Fetch a list of serial numbers for positions",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/serial-numbers?limit=<integer>&page=<integer>&position_id=<string>&document_id=<string>&in_use=<boolean>",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "serial-numbers"
      ],
      "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."
        },
        {
          "key": "position_id",
          "value": "<string>",
          "description": "Filter serial numbers by position id."
        },
        {
          "key": "document_id",
          "value": "<string>",
          "description": "Filter serial numbers by document id."
        },
        {
          "key": "in_use",
          "value": "<boolean>",
          "description": "Filter serial numbers by usage."
        }
      ]
    }
  },
  "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}}/serial-numbers?limit=<integer>&page=<integer>&position_id=<string>&document_id=<string>&in_use=<boolean>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "serial-numbers"
          ],
          "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."
            },
            {
              "key": "position_id",
              "value": "<string>",
              "description": "Filter serial numbers by position id."
            },
            {
              "key": "document_id",
              "value": "<string>",
              "description": "Filter serial numbers by document id."
            },
            {
              "key": "in_use",
              "value": "<boolean>",
              "description": "Filter serial numbers by usage."
            }
          ]
        }
      },
      "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      \"serial_number\": \"<string>\",\n      \"position_id\": \"<integer>\",\n      \"id\": \"<long>\",\n      \"document_id\": \"<long>\",\n      \"document_position_id\": \"<long>\",\n      \"used_at\": \"<string>\",\n      \"created_at\": \"<string>\"\n    },\n    {\n      \"serial_number\": \"<string>\",\n      \"position_id\": \"<integer>\",\n      \"id\": \"<long>\",\n      \"document_id\": \"<long>\",\n      \"document_position_id\": \"<long>\",\n      \"used_at\": \"<string>\",\n      \"created_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}}/serial-numbers?limit=<integer>&page=<integer>&position_id=<string>&document_id=<string>&in_use=<boolean>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "serial-numbers"
          ],
          "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."
            },
            {
              "key": "position_id",
              "value": "<string>",
              "description": "Filter serial numbers by position id."
            },
            {
              "key": "document_id",
              "value": "<string>",
              "description": "Filter serial numbers by document id."
            },
            {
              "key": "in_use",
              "value": "<boolean>",
              "description": "Filter serial numbers by usage."
            }
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "text",
      "header": [
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}