Homepage
Get tasks via POST
Retrieves paginated tasks for the authenticated user using a POST body for location filter criteria.
post/home/tasks
Query parameters
pageinteger required
Page number (zero-based)
pageSizeinteger required
Number of tasks per page
productsstring nullable
Comma-separated list of product filters
Request body
Example request
{
"filterCategory": "business"
}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
}