API Reference//
- Get location rankings via POST
Get key metrics
Get key metrics configuration
Update key metrics configuration
Get location rankings via GET
Get location scores via GET
Get location scores via POST
Get suggestions via GET
Get suggestions via POST
Dismiss a suggestion
Get tasks via GET
Get tasks via POST
Dismiss a task
Undo a task dismissal
Get location IDs for a task type via GET
Get location IDs for a task type via POST
Get location rankings via...
Retrieves a paginated ranking of locations based on their scores, using a POST body for filter criteria.
Filter strategy to apply: location-groups, labels, business, or location
Example:"business"
- https://uberall.com/apihttps://uberall.com/api/home/locations/ranks
- Mock Serverhttps://docs.uberall.com/_mock/apis/swagger/home/locations/ranks
curl -i -X POST \
'https://uberall.com/api/home/locations/ranks?sort=desc&page=0&pageSize=10&scoreMin=0&scoreMax=100&normalisedScoreMin=0&normalisedScoreMax=0' \
-H 'Content-Type: application/json' \
-d '{
"locationIds": [
0
],
"businessIds": [
0
],
"locationGroupIds": [
0
],
"labels": "[\"premium\", \"flagship\"]",
"excludedLocationIds": [
0
],
"excludedBusinessIds": [
0
],
"excludedLocationGroupIds": [
0
],
"excludedLabels": [
"string"
],
"filterCategory": "business",
"query": "string"
}'Successfully retrieved location rankings
Response
{ "ranks": [ { … } ], "page": 0, "pageSize": 10, "size": 10, "totalCount": 150 }