Skip to content

Force-run a validated bulk upload

Request

Enqueue processing for a bulk upload in validated or invalid_input when at least one runnable row remains. Returns 201 Created when the job is queued (this endpoint predates the 202 convention used by regenerate_results). Poll GET /v1/bulk_uploads/{bulk_upload_id} for state transitions — do not poll this POST endpoint.

Security
get-bearer-token-using-oauth2
Path
bulk_upload_idstring, (uuid)required

the uuid identifying the bulk upload

Example:2b8313e8-b578-45a1-4efd-952b8313e890
POST
/bulk_uploads/{bulk_upload_id}/force_run
curl -i -X POST \
  https://api.checkrtrust.com/v1/bulk_uploads/2b8313e8-b578-45a1-4efd-952b8313e890/force_run \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Enqueued (returns 201 for backward compatibility)

Bodyapplication/json
messagestringrequired
Example:"Bulk upload enqueued for processing"
Response
{ "message": "Bulk upload enqueued for processing" }