Siren

Delete Distributor

Deletes a distributor using a two-stage pattern: soft delete first, then permanent removal on a second call.

Last updated: April 9, 2026

Delete Distributor

DELETE /siren/v1/distributors/{id}

Uses a two-stage delete pattern:

  1. If the distributor’s status is not deleted, performs a soft delete by setting status to deleted. Returns 200 with the updated record.
  2. If the distributor’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.