Skip to main content
GET
/
admin
/
locations
/
public
Get Public Locations
curl --request GET \
  --url https://api.decodahealth.com/admin/locations/public \
  --header 'API-KEY: <api-key>' \
  --header 'TENANT: <tenant>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "timezone": "<string>",
    "addressLineOne": "<string>",
    "addressLineTwo": "<string>",
    "city": "<string>",
    "state": "<string>",
    "zipCode": "<string>",
    "country": "<string>"
  }
]

Headers

TENANT
string
required

The tenant you are making this request on behalf of

API-KEY
string
required

Your api key

Response

200 - application/json

Successful Response

id
string
required
name
string
required
timezone
string
required
addressLineOne
string | null
addressLineTwo
string | null
city
string | null
state
string | null
zipCode
string | null
country
string | null