Skip to main content
POST
/
api
/
v1
/
beam
/
backfills
/
{job_id}
/
cancel
Cancel backfill
curl --request POST \
  --url https://api.example.com/api/v1/beam/backfills/{job_id}/cancel
POST /api/v1/beam/backfills/{job_id}/cancel
Sends a cancellation signal to a running backfill job. The job will stop at the next phase boundary and transition to cancelled. Resources (topics, worker pods) are torn down automatically. Path parameters:
ParameterDescription
job_idThe backfill job ID returned by Create backfill
curl -X POST https://api.allium.so/api/v1/beam/backfills/${JOB_ID}/cancel \
  -H "X-API-Key: ${ALLIUM_API_KEY}"