Action Item Category
Update a category
Update an action item category. Only the fields included in the request body are updated.
patch/action_item_category/{id}
Path parameters
idstring required
The category ID.
Request body
Example request
{
"name": "Security vulnerabilities",
"description": "Tracks security issues found by automated scanners",
"color": "#E53E3E",
"icon": "shield",
"unit_name": "Dollars",
"unit_symbol": "$",
"status": "active",
"config": {
"max_deferral_days": 90,
"max_deferral_count": 3
}
}Response
The updated category.
Example response
{
"id": "abc123def456",
"slug": "security-vulnerabilities",
"nrn": "organization=1:account=2",
"name": "Security vulnerabilities",
"description": "Tracks security issues found by automated scanners",
"color": "#E53E3E",
"icon": "shield",
"unit_name": "Dollars",
"unit_symbol": "$",
"config": {
"max_deferral_days": 90,
"max_deferral_count": 3
},
"status": "active",
"created_at": "2026-04-01T10:00:00.000Z",
"updated_at": "2026-04-01T10:00:00.000Z"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.