Homepage
Get tasks via GET
Retrieves paginated tasks for the authenticated user using query parameters for location filter criteria.
get/home/tasks
Query parameters
pageinteger required
Page number (zero-based)
pageSizeinteger required
Number of tasks per page
locationIdsstring nullable
Comma-separated list of location IDs to filter by
businessIdsstring nullable
Comma-separated list of business IDs to filter by
productsstring nullable
Comma-separated list of product filters
locationGroupIdsstring nullable
Comma-separated list of location group IDs to filter by
labelsstring nullable
Comma-separated list of labels to filter by
excludedLocationIdsstring nullable
Comma-separated list of location IDs to exclude
excludedBusinessIdsstring nullable
Comma-separated list of business IDs to exclude
excludedLocationGroupIdsstring nullable
Comma-separated list of location group IDs to exclude
excludedLabelsstring nullable
Comma-separated list of labels to exclude
filterCategorystring nullable
Filter strategy to apply: location-groups, labels, business, or location
querystring nullable
Search query string depending on filter category
Response
Tasks retrieved successfully
Example response
{
"tasks": [
{
"parameters": {
"address": "123 Main St, Berlin",
"directory": "google",
"directoriesCount": 2,
"field": "phone"
},
"locationId": 12345,
"product": "listingHealth",
"link": "/listings/health/12345"
}
],
"pageSize": 10,
"size": 10,
"totalCount": 42,
"totalHighPriorityCount": 5,
"totalMediumPriorityCount": 15,
"totalLowPriorityCount": 22
}