Delete Conversion
Soft-delete or permanently remove a conversion record using the two-stage delete pattern.
Last updated: April 9, 2026
Delete Conversion
DELETE /siren/v1/conversions/{id}
Uses a two-stage delete pattern. The first DELETE request performs a soft delete by setting the conversion’s status to deleted and returns 200 with the updated record. If the conversion is already in deleted status, a second DELETE request permanently removes the record from the database and returns 204 No Content.
Error Responses
Returns 404 if no record exists with that ID, or 500 on a database error.
Events
Broadcasts ConversionActionEvent (action: Delete) after success.