Skip to content

Get a Location

Request

Get all information about a specific location, including listing statuses

Security
X-API-KEY or Authorization
Path
idstringrequired

The uberall unique id of the location

curl -i -X GET \
  'https://uberall.com/api/locations/{id}' \
  -H 'X-API-KEY: YOUR_API_KEY_HERE'

Responses

Location successfully retrieved

Bodyapplication/json
statusstringrequired
Enum:"SUCCESS""PENDING""QUOTA_LIMIT_EXCEED""NOT_AUTHORIZED""FORBIDDEN""BAD_ACCESS_TOKEN""BAD_PRIVATE_KEY""BAD_PUBLIC_KEY""MISSING_PARAMETER""INVALID_PARAMETER"
messagestring

(optional) Holds further information about the response

warningsArray of strings

(optional) Holds further warnings

responseobjectrequired

Location Response Model

Response
{ "status": "SUCCESS", "message": "string", "warnings": [ "string" ], "response": { "location": {}, "suggestionsForFields": [], "suggestionsForFieldsAvailable": true } }