API Reference

Get All Parking Spots

Get the details of all parking spots.

📘

No payload required

To receive all parking spots your organization has set up in Bringg, call the endpoint above without any parameters in the body of your request.

Read more about the parameters included in the Parking Spot Object.

Response (Output) Params
ParameterDescription
created_at
datetime
The date and time this entity was created.
id
int32
Bringg's ID for this entity.
updated_at
datetime
The time and date when this entity was last updated.

Parking Spot Details

ParameterDescriptionValidations & Notes
address
string
The address of the parking spot.Required if lat and lng are null.
external_id
string
Your external system's ID for this entity.Optional.
This must be a unique ID. An error will be returned if a duplicate is found in Bringg when creating a new parking spot.
lat
double
The geographical latitude of this parking spot.Required if address is null.
lng
double
The geographical longitude of this parking spot.Required if address is null.
name
string
The entity name in Bringg. For example, this could be the name of a customer, location, parking spot, or inventory item.Required.
team_external_id
string
Your external system's ID for the associated team.Required if team_id is null.
team_id
int32
Bringg's ID for the associated team.Required if team_external_id is null.
Language