Get billing records either by counter or by date

Securityjwt
Request
query Parameters
filter
required
string

The request will be performed using fetch mechanism based on this filter. Its value can either be counter or date

start
string

If filter == counter: Marker, which indicates a starting point, which should be used to retrieve the next batch of records. Each time the last used counter should be stored on the client side to be used in the next request.

If filter == date: Start date in the format YYYY-MM-DD, e.g. 2020-01-01.

pageSize
integer <int32>
Default: 1000

Only if filter == date -- Number of records to retrieve per page. (default: 1000)

size
integer <int32>
Default: 1000

Only if filter == counter -- Number of records to retrieve per request. (default: 1000)

page
integer <int32>
Default: 1

Only if filter == date -- Page number. Required

Responses
200

OK

get/billing-records
Request samples
Response samples
application/json
[
  • {
    • "partner": "string",
    • "partnerCountryCode": "string",
    • "counterId": 0,
    • "date": "2019-08-24T14:15:22Z",
    • "utcDate": "string",
    • "recordType": "string",
    • "billingAccountId": 0,
    • "billingAccountName": "string",
    • "parkingUserId": 0,
    • "parkingUserFirstName": "string",
    • "parkingUserLastName": "string",
    • "phoneNumber": "string",
    • "costCenter": "string",
    • "billingInfoId": 0,
    • "billingInfoRecordId": 0,
    • "billingPeriodStart": "2019-08-24T14:15:22Z",
    • "utcBillingPeriodStart": "string",
    • "billingPeriodEnd": "2019-08-24T14:15:22Z",
    • "utcBillingPeriodEnd": "string",
    • "currency": "string",
    • "amountExcludingVat": 0,
    • "amountIncludingVat": 0,
    • "vat": 0,
    • "parkingId": 0,
    • "licensePlate": "string",
    • "parkingAreaNumber": "string",
    • "parkingAreaName": "string",
    • "parkingAreaCity": "string",
    • "parkingSubType": "string",
    • "parkingAreaId": 0,
    • "parkingOperatorName": "string",
    • "parkingOperatorVat": "string",
    • "parkingCountryCode": "string",
    • "parkingNote": "string",
    • "parkingCurrency": "string",
    • "referencedBillingRecordCounterId": 0
    }
]