Skip to content

Get the keywords for locations

Request

Get the keywords for locations

Security
X-API-KEY or Authorization
Query
locationIdsArray of strings

The location ids that should have keywords returned

businessIdsArray of strings

The business ids for the locations that should be returned

excludedLocationIdsArray of strings

List of location ids which should be excluded from keywords search

curl -i -X GET \
  'https://uberall.com/api/locations/keywords?locationIds=string&businessIds=string&excludedLocationIds=string' \
  -H 'X-API-KEY: YOUR_API_KEY_HERE'

Responses

Keywords for locations successfully retrieved

Body*/*
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

The actual response object of the response

Response
{
  "status": "SUCCESS",
  "message": "string",
  "warnings": [
    "string"
  ],
  "response": {
    "keywords": [
      "string"
    ]
  }
}