Skip to main content
GET
/
api
/
billing-info-records
Get Billing Info Records
curl --request GET \
  --url https://fleet.staging.ezprk.dev/api/billing-info-records \
  --header 'Authorization: Bearer <token>'
{
  "content": [
    {
      "infoId": 123,
      "infoRecordId": 123,
      "recordType": "<string>",
      "recordSubType": "<string>",
      "startDate": "2023-11-07T05:31:56Z",
      "endDate": "2023-11-07T05:31:56Z",
      "costCenter": "<string>",
      "currency": {
        "currencyCode": "<string>",
        "displayName": "<string>",
        "symbol": "<string>",
        "defaultFractionDigits": 123,
        "numericCode": 123,
        "numericCodeAsString": "<string>"
      },
      "vat": 123,
      "amountExcludingVat": 123,
      "amountIncludingVat": 123,
      "parking": {
        "licensePlate": "<string>",
        "id": 123,
        "areaNumber": "<string>",
        "areaName": "<string>",
        "areaCity": "<string>",
        "subType": "<string>",
        "areaId": 123,
        "operatorName": "<string>",
        "operatorVatNumber": "<string>",
        "countryCode": "<string>",
        "note": "<string>",
        "currency": "<string>"
      },
      "user": {
        "id": 123,
        "firstName": "<string>",
        "lastName": "<string>",
        "phoneNumber": "<string>"
      }
    }
  ],
  "page": {
    "size": 123,
    "number": 123,
    "totalElements": 123,
    "totalPages": 123
  }
}

Authorizations

Authorization
string
header
required

You can get the JWT from the Login endpoint

Query Parameters

fromDate
string<date>

Format: YYYY-MM-DD

toDate
string<date>

Format: YYYY-MM-DD

page
integer
default:0

Zero-based page index (0..N)

size
integer
default:20

The size of the page to be returned

Response

Returns a page of Billing Info Records

content
object[]
page
object