Query Parameters
Max number of tasks to return
Offset for pagination
Filter by updatedAt >= since (unix seconds)
Filter by updatedAt <= until (unix seconds)
Sort field (createdAt, updatedAt, scheduledFor)
Sort order (asc or desc)
curl --request GET \
--url https://api.vida.dev/api/v2/tasks
{
"success": true,
"total": 123,
"tasks": [
{
"id": "task1",
"type": "call",
"state": "pending",
"target": "+15551234567",
"createdAt": 1712345678
}
]
}
Retrieve all tasks for the current org. Supports filtering, sorting, and pagination.
curl --request GET \
--url https://api.vida.dev/api/v2/tasks
{
"success": true,
"total": 123,
"tasks": [
{
"id": "task1",
"type": "call",
"state": "pending",
"target": "+15551234567",
"createdAt": 1712345678
}
]
}
Max number of tasks to return
Offset for pagination
Filter by updatedAt >= since (unix seconds)
Filter by updatedAt <= until (unix seconds)
Sort field (createdAt, updatedAt, scheduledFor)
Sort order (asc or desc)