Skip to content

Get insight data warnings

Request

Retrieves connection and permission warnings for insight data collection. Runs concurrent checks for listings connection status, missing permissions (paginated), and location counts per directory for both connected and not-connected states. Pagination accepts either page/pageSize or the legacy max/offset, where offset is a record offset.

Query
vany

API version. Defaults to the latest version. Versions older than 20260713 additionally return warnings.missingConnection.locations and warnings.missingPermission.accounts[].totalLocationsCount, paginate both of those lists with max/offset, and report offset as a record offset.

Example:v=20260713
typeany
filterCategoryany

Filter strategy to use for scoping locations

Enum:"location""business""labels""location-groups"
locationIdsany

Comma-separated location IDs (used when filterCategory=location)

businessIdsany

Comma-separated business IDs (used when filterCategory=business)

labelsany

Label names (used when filterCategory=labels)

locationGroupIdsany

Location group IDs (used when filterCategory=location-groups)

excludedLocationIdsany

Comma-separated location IDs to exclude from results

excludedBusinessIdsany

Comma-separated business IDs to exclude from results

excludedLabelsany

Label names to exclude from results

excludedLocationGroupIdsany

Location group IDs to exclude from results

curl -i -X GET \
  'https://uberall.com/api/dashboard/insights-data/warnings?v=20260713&type=%7Btype%7D&filterCategory=location&locationIds=%7BlocationIds%7D&businessIds=%7BbusinessIds%7D&labels=%7Blabels%7D&locationGroupIds=%7BlocationGroupIds%7D&excludedLocationIds=%7BexcludedLocationIds%7D&excludedBusinessIds=%7BexcludedBusinessIds%7D&excludedLabels=%7BexcludedLabels%7D&excludedLocationGroupIds=%7BexcludedLocationGroupIds%7D'

Responses

Connection and permission warnings with directory-level counts

Bodyapplication/json
One of:

Connection and permission warnings for insight data collection

connectedLocationsArray of objectsrequired

Connected location counts per directory type

notConnectedLocationsArray of objectsrequired

Not-connected location counts per directory type

warningsobjectrequired

Missing connection and permission warnings

totalItemsCountany, (int32)required

Total number of warning items

maxany, (int32)required

Page size

offsetany, (int32)required

Page number (zero-based)

Response
{ "connectedLocations": [ {} ], "notConnectedLocations": [ {} ], "warnings": { "missingConnection": {}, "missingPermission": {} }, "totalItemsCount": null, "max": null, "offset": null }