Response

Status Code:

200 OK (on successful retrieval)


Response Headers (for pagination):

• X-Page: The current page number.

• X-Page-Size: The number of rows returned per page.


Response Body

An object containing a data array with the requested rows.

Example:

{
  "data": [
    {
      "id": 1,
      "InvoiceNo": "536365",
      "StockCode": "85123A",
      "Description": "Description 1"
    },
    {
      "id": 2,
      "InvoiceNo": "536365",
      "StockCode": "85123B",
      "Description": "Description 2"
    }
  ]
}

Last updated

Was this helpful?