acc_list_issues
List and filter issues from a single ACC project (limit 50 per call) via the APS Construction Issues API.
When to use: The user or upstream agent needs to review open issues, count issues by status/priority, or look up an issue_id before calling acc_update_issue. E.g. 'show me all critical open issues on the Tower project'.
When NOT to use: Do not use to fetch RFIs (use acc_list_rfis) or to search documents.
APS scopes: data:read account:read. No write scope required.
Rate limits: ACC Issues API ~100 req/min per app; results pageable (limit 50 here, max 200 upstream). For large projects, call once and filter client-side instead of looping.
Errors: 401 (APS token expired — refresh); 403 (user lacks 'View Issues' permission on project or scope insufficient); 404 (project_id not found — verify 'b.' prefix and hub membership via acc_list_projects); 422 (invalid filter value — check status/priority spelling); 429 (rate limit — back off 60s); 5xx (ACC upstream — retry with jitter).
Side effects: None. Read-only and idempotent.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | No | Optional status filter. Typical values: open, in_review, closed, draft. | |
| priority | No | Optional priority filter. Typical values: critical, high, medium, low. | |
| project_id | Yes | ACC project ID. MUST use 'b.' prefix literal. Obtain via acc_list_projects. | |
| assigned_to | No | Optional assignee APS user ID filter. Accepted but not currently forwarded as a URL filter by this server — filter client-side if needed. |