Parking Lots
GEThttps://api.voxo.co/parkinglots/{recordId}
Get Parking Lot By Id
Retrieve parking lot range by IdHeader
Parameters
Path- Name
recordId*
- Type
- Integer
- Description
1234
- Name
Authorization*
- Type
- String
- Description
Bearer
{AccessToken}
- Name
Content-Type*
- Type
- String
- Description
application/json
Response
{
"id": 421,
"name": "the",
"start": 71,
"end": 74,
"hosted": "",
"tenantId": 432
}
cURL
curl --location -g \
--request GET 'https://api.voxo.com/parkinglots/1234' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'
GEThttps://api.voxo.co/parkinglots?tenantId={tenantId}
Get All Parking Lots
Retrieve the parking lot range for authorized accountsHeader
Parameters
Query- Name
tenantId*
- Type
- Integer
- Description
12345
- Name
Authorization*
- Type
- String
- Description
Bearer
{AccessToken}
- Name
Content-Type*
- Type
- String
- Description
application/json
Response
[
{
"id": 421,
"name": "the",
"start": 71,
"end": 74,
"hosted": "",
"tenantId": 432
}
]
cURL
curl --location -g \
--request GET 'https://api.voxo.com/parkinglots?tenantId=432' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'