Skip to content

Get available and potential features for a specific location

Request

Returns the feature data for a single location as a flat object. Returns null if the location does not exist or is not accessible to the caller.

Security
X-API-KEY or Authorization
Path
locationIdinteger, (int64)required

The uberall unique id of the location

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

Responses

Features 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 Feature Response Model

Response
{ "status": "SUCCESS", "message": "string", "warnings": [ "string" ], "response": { "id": 0, "businessId": 0, "currentFeatures": [], "potentialFeatures": [], "limitReached": [], "status": "CREATED" } }