get https://developer-api.bringg.com/services/bOBduCfK//
Get a parking spot using either the ID created by Bringg or your external ID.
This endpoint uses query params
Instead of sending a payload, include the
id
orexternal_id
in the endpoint URL. For example:
https://developer-api.bringg.com/services/<service-id>/<secret-1>/<secret-2>/?id=12345
https://developer-api.bringg.com/services/<service-id>/<secret-1>/<secret-2>/?external_id=v123
Read more about the parameters included in the Parking Spot Object.
Response (Output) Params
Parameter | Description |
---|---|
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
Parameter | Description | Validations & 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 . |