Get insight data warnings
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 parameters
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.
Filter strategy to use for scoping locations
Comma-separated location IDs (used when filterCategory=location)
Comma-separated business IDs (used when filterCategory=business)
Label names (used when filterCategory=labels)
Location group IDs (used when filterCategory=location-groups)
Comma-separated location IDs to exclude from results
Comma-separated business IDs to exclude from results
Label names to exclude from results
Location group IDs to exclude from results
Response
Connection and permission warnings with directory-level counts
Example response
{
"connectedLocations": [
{
"type": "GOOGLE"
}
],
"notConnectedLocations": [
{
"type": "GOOGLE"
}
],
"warnings": {
"missingPermission": {
"accounts": [
{
"type": "GOOGLE"
}
]
}
}
}