Skip to main content
GET
/
locations
/
{locationId}
cURL
curl --request GET \
  --url https://api.vooma.ai/v0/locations/{locationId} \
  --header 'Authorization: Bearer <token>'
{
  "location": {
    "externalIds": [
      {
        "type": "CUSTOM",
        "value": "<string>"
      }
    ],
    "address": {
      "country": "<string>",
      "postalCode": "<string>",
      "city": "<string>",
      "state": "<string>",
      "addressTwo": "<string>",
      "addressOne": "<string>"
    },
    "geoCoordinates": {
      "longitude": 123,
      "latitude": 123
    },
    "name": "<string>",
    "id": "<string>"
  }
}
Beta Feature: This functionality is currently in beta. You may experience changes or limited support as we continue to improve it.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

locationId
string
required

Response

200 - application/json

Ok

location
object
required