curl --request GET \
--url http://localhost:3333/v1/task-management/stats \
--header 'X-API-Key: <api-key>'{
"total": 123,
"byStatus": {
"todo": 123,
"in_progress": 123,
"in_review": 123,
"done": 123,
"canceled": 123
}
}Retrieve task items statistics (total count, counts by status) for a specific entity
curl --request GET \
--url http://localhost:3333/v1/task-management/stats \
--header 'X-API-Key: <api-key>'{
"total": 123,
"byStatus": {
"todo": 123,
"in_progress": 123,
"in_review": 123,
"done": 123,
"canceled": 123
}
}API key for authentication
Organization ID (required for session auth, optional for API key auth)
ID of the entity to get task items stats for
"vnd_abc123def456"
Type of entity
vendor, risk Was this page helpful?