Assign an action item
POST/action_item/:id/assign
Assign an action item to a user of the organization, making that person its owner. An item has a single owner, so assigning an item that already has one reassigns it.
Only items that still represent work can be assigned: open, deferred, pending_deferral, pending_verification, and pending_rejection. Assigning an item in resolved, rejected, or closed returns a 400.
Request
Responses
- 200
- 4XX
- 5XX
The updated action item.
Client error responses due to invalid input, missing parameters, or unauthorized access.
Request validation errors use a different shape:
{
"type": "ValidationError",
"errors": [{ "message": "body must have required property 'defer_until'" }]
}
Server error responses indicating an issue on the API side.