DELETE
/
sinks
/
{sink_id_or_name}
/
backfills
/
{backfill_id}
curl -X DELETE "https://api.sequinstream.com/api/sinks/kafka-ids/backfills/e0c918bb-12a2-4810-94a3-387cd672a478" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "id": "<string>",
  "deleted": true
}
Deletes a backfill by its ID.

Request fields

sink_id_or_name
string
required
The name or ID of the sink
backfill_id
string
required
The ID of the backfill to delete

Response fields

id
string
The unique identifier of the deleted backfill
deleted
boolean
Whether the backfill was successfully deleted
curl -X DELETE "https://api.sequinstream.com/api/sinks/kafka-ids/backfills/e0c918bb-12a2-4810-94a3-387cd672a478" \
  -H "Authorization: Bearer YOUR_API_TOKEN"