Siren

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:

  1. If the collaborator’s status is not deleted, performs a soft delete by setting status to deleted. Returns 200 with the updated record.
  2. If the collaborator’s status is already deleted, permanently removes the record from the database. Returns 204 No Content.

Error Responses:

  • 404. No record found with that ID.
  • 500. Database error.

Events: Broadcasts CollaboratorActionEvent (action: Delete) after success.