curl --request GET \
--url https://api.avidoai.com/v0/documents/count-by-assignee \
--header 'x-api-key: <api-key>' \
--header 'x-application-id: <api-key>'{
"data": [
{
"assignee": "user_123456789",
"count": 12
}
]
}Retrieves document counts grouped by assignee for the authenticated organization.
curl --request GET \
--url https://api.avidoai.com/v0/documents/count-by-assignee \
--header 'x-api-key: <api-key>' \
--header 'x-application-id: <api-key>'{
"data": [
{
"assignee": "user_123456789",
"count": 12
}
]
}Your unique Avido API key
Your unique Avido Application ID
Filter by document type. Defaults to KNOWLEDGE if not specified. Pass "ALL" to count across all document types.
KNOWLEDGE, POLICY, ALL "KNOWLEDGE"
Successfully retrieved document counts by assignee
Response containing document counts grouped by assignee
Show child attributes