Delete Collaborator
Soft-delete or permanently remove a collaborator record using the two-stage delete pattern.
Last updated: April 9, 2026
Delete Collaborator
DELETE /siren/v1/collaborators/{id}
Uses a two-stage delete pattern:
- If the collaborator’s status is not
deleted, performs a soft delete by settingstatustodeleted. Returns200with the updated record. - If the collaborator’s status is already
deleted, permanently removes the record from the database. Returns204 No Content.
Error Responses:
404. No record found with that ID.500. Database error.
Events: Broadcasts CollaboratorActionEvent (action: Delete) after success.