Cancelling a batch
curl --request DELETE \
  --url https://waitlist-api.prod.blast.io/v1/contracts/{contractAddress}/batches/{batchId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true
}
Batches may be cancelled before finalizeAt. It’s not possible to cancel a specific transfer. To do so, you would need to cancel the entire batch and resend the batch excluding that transfer.

Authentication

Authorization
string
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Params

contractAddress
string
required
Contract address which submitted the batch.
batchId
string
required
batchId of batch to cancel.

Response

success
boolean
Response status.