List action items
List action items with filtering, sorting, and pagination.
Default sort order is by score descending, then by creation date descending.
Query parameters
Filter by NRN (partial match supported).
Filter by status. Use status[] for multiple values.
Comma-separated statuses to exclude.
Filter by category ID.
Filter by priority level.
Filter by creator (user email or agent identifier).
Filter by owner. Accepts a comma-separated list of nullplatform user IDs, and the token none for items nobody owns, so none,2345 returns the unassigned pool together with the items owned by user 2345.
Filter by whether the item has an owner at all. Ignored when assignee_id is also present, since that filter is more specific.
Filter items with a due date before this date.
Filter items with a due date after this date.
Filter items with a value greater than or equal to this amount.
Filter items with a value less than or equal to this amount.
Sort field. Defaults to score.
Sort direction. Defaults to desc.
Number of results per page. Max 100, default 25.
Pagination offset.
Response
A paginated list of action items.
Example response
{
"results": [
{
"id": "xYz789AbCdEf",
"slug": "upgrade-base-image-to-fix-cve-2026-1234",
"nrn": "organization=1:account=2:namespace=3:application=4",
"title": "Upgrade base image to fix CVE-2026-1234",
"description": "The current base image has a critical vulnerability.",
"status": "open",
"priority": "critical",
"score": 2000,
"category_id": "abc123def456",
"value": 500,
"created_by": "security-scanner-agent",
"assignee_id": 2345,
"assigned_at": "2026-08-20T14:32:00Z",
"assigned_by": "jane@example.com",
"due_date": "2026-05-01T00:00:00Z",
"labels": {
"source": "container-scan",
"cve": "CVE-2026-1234"
},
"affected_resources": [
{
"type": "application",
"name": "my-api-service",
"permalink": "https://app.nullplatform.com/applications/4",
"description": "Main API service"
}
],
"references": [
{
"name": "CVE-2026-1234",
"permalink": "https://nvd.nist.gov/vuln/detail/CVE-2026-1234",
"description": "NVD entry for this vulnerability"
}
],
"metadata": {
"cve_id": "CVE-2026-1234"
},
"config": {
"max_deferral_days": 90,
"max_deferral_count": 3
},
"comments": [
{
"id": "cmt123AbCdEf",
"author": "jane@example.com",
"content": "This should be prioritized for the next sprint.",
"created_at": "2026-04-06T14:30:00.000Z"
}
],
"audit_logs": [
{
"id": "3c35f973-d53b-4e60-a578-2e8fba1dbbb1",
"actor": "jane@example.com",
"action": "deferred",
"details": {
"from": "open",
"to": "deferred",
"reason": "Waiting for the next maintenance window."
},
"timestamp": "2026-04-06T12:00:00.000Z"
}
],
"created_at": "2026-04-06T12:00:00.000Z",
"updated_at": "2026-04-06T12:00:00.000Z"
}
],
"pagination": {
"limit": 25,
"total": 42
}
}