Parking Lots


GEThttps://api.voxo.co/parkinglots/{recordId}

Get Parking Lot By Id

Retrieve parking lot range by Id

Parameters

Path
  • Name
    recordId*
    Type
    Integer
    Description

    1234

Header
  • 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.co/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 accounts

Parameters

Query
  • Name
    tenantId*
    Type
    Integer
    Description

    12345

Header
  • 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.co/parkinglots?tenantId=432' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'