tasks.readpage and pageSize; see the query parameters below for defaults and limits. See Pagination & filtering for examples.curl --location 'https://api.cvviz.com/v1/tasks?page=&pageSize=&assigned_to=&completed=&due_before=' \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": 7301,
"note": "Follow up with the candidate.",
"entityType": "candidate",
"entityId": 501,
"dueDate": "2026-09-03T10:00:00.000Z",
"assignedTo": 18,
"assignedToName": "Recruiter name",
"isCompleted": false,
"createdAt": "2026-09-01T10:00:00.000Z",
"updatedAt": null
}
],
"meta": {
"pagination": {
"page": 1,
"pageSize": 10,
"totalItems": 1,
"totalPages": 1
}
}
}