Skip to content

Work Items

REST API endpoints for remediation work items.

1 min read · For: Developers Security Engineers · Updated Mar 22, 2026 · Edit

Endpoints for creating, managing, and dispatching remediation work items.

GET /api/v1/work-items Auth

List work items with pagination, filtering by status, priority, assignee, and SLA breach status, and sorting.

GET /api/v1/work-items/{id} Auth

Get a single work item by ID, including linked findings, SLA status, and external ticket reference.

POST /api/v1/work-items Auth

Create a new work item from one or more findings. Specify assignee and optional dispatch target.

POST /api/v1/work-items/{id}/dispatch Auth

Dispatch a work item to a connected ticketing system (Jira, ServiceNow, etc.).

PATCH /api/v1/work-items/{id}/status Auth

Transition a work item's status (e.g., to pending verification).

PATCH /api/v1/work-items/{id}/assign Auth

Assign or reassign a work item to a user or team.

Full schemas

Refer to /api/v1/openapi.json on your Basirah instance for exact request/response schemas, required fields, and valid status transitions.