Skip to main content
Cars allowlist allows partners and customers to manage which vehicles are permitted to park under an account. By maintaining an allowlist of approved vehicles, you ensure that only authorized cars can be associated with a fleet.

Two allowlist modes

The API functionality supports two modes, and the right one depends on how your integration is structured:
  • Global allowlist — A single allowlist applies across all customers connected to your integration. Any vehicle added to the allowlist is permitted for all customers under that integration. Use this if you manage a unified fleet and want one centralized list of approved vehicles.
  • Single Billing Account allowlist — Each customer connected to your integration has their own individual allowlist. Vehicles must be added per customer, and a vehicle permitted for one customer is not automatically permitted for others. Use this if you manage multiple customers with distinct fleets that should remain separated.
If you are unsure which mode applies to your integration, check with the team that set up your API access — the mode is defined at the integration level.

Removing cars — parameter naming

The two delete operations accept license numbers under different query parameter names. Use the correct name for the endpoint you are calling:
  • Global allowlistDELETE /api/cars?ln=ABC123&ln=DEF456
  • Billing Account allowlistDELETE /api/billing-accounts/{baId}/cars?licenseNumbers=ABC123&licenseNumbers=DEF456