curl --request GET \
--url https://app.nex.ai/api/developers/v1/tasks \
--header 'Authorization: <api-key>'{
"data": [
{
"id": "800",
"title": "Follow up with client",
"priority": "high",
"is_completed": false,
"created_by": "developer_api",
"created_at": "2024-01-15T10:00:00Z"
}
],
"has_more": true,
"total": 47,
"next_offset": 20
}Retrieves tasks with optional filtering by entity, assignee, completion status, and search query. Supports offset-based pagination.
curl --request GET \
--url https://app.nex.ai/api/developers/v1/tasks \
--header 'Authorization: <api-key>'{
"data": [
{
"id": "800",
"title": "Follow up with client",
"priority": "high",
"is_completed": false,
"created_by": "developer_api",
"created_at": "2024-01-15T10:00:00Z"
}
],
"has_more": true,
"total": 47,
"next_offset": 20
}API key for authentication (format: "Bearer YOUR_API_KEY")
Filter by associated record ID
Filter by assignee user ID
Search task titles
Filter by completion status (true/false)
Max results (1-500, default: 100)
Pagination offset (default: 0)
List of tasks
Hide child attributes