Skip to main content
POST
/
api
/
billing-accounts
/
{baId}
/
cars
Add cars to a Billing Account
curl --request POST \
  --url https://fleet.staging.ezprk.dev/api/billing-accounts/{baId}/cars \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "licenseNumbers": [
    "<string>"
  ]
}
'
{
  "failures": [
    {
      "licenseNumber": "<string>",
      "error": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developer.easyparkgroup.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

You can get the JWT from the Login endpoint

Path Parameters

baId
integer<int64>
required

Billing account ID

Body

application/json

License numbers to add

licenseNumbers
string[]
required
Minimum array length: 1

Response

Returns add-car result with failures for license numbers that could not be added

failures
object[]