Get triage summary for a project
GET
/api/projects/{id}/triage_summary
Returns triage metrics aggregated across all of the project's components — top-level comment counts per triage status plus the adjudication percentage. Requires viewer permission on the project.
Authorizations
tokenAuth
Personal access token authentication. Send via Authorization header: Authorization: Token vulcan_xxx. Tokens are SHA-256 hashed server-side (never stored in plaintext). Scopes: read (GET), write (mutations), admin (everything). Create tokens via Settings → API Tokens in the web UI.
Type
HTTP (token)
Parameters
Path Parameters
id*
Numeric ID of the project.
Type
Requiredinteger
Example
7Responses
Project-wide triage summary
application/json
JSON "by_triage_status": { "pending": 3, "concur": 1, "concur_with_comment": 0, "non_concur": 0, "duplicate": 0, "informational": 1, "needs_clarification": 0, "withdrawn": 0, "addressed_by": 0 }, "total": 5, "adjudicated": 1, "adjudication_pct": 20
{
}