POST
/
api
/
v1
/
document-extractions
/
{workflowName}
/
{jobId}
/
reprocess
curl --request POST \
  --url https://api.repromptai.com/api/v1/document-extractions/{workflowName}/{jobId}/reprocess \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "incremental": true
}'
{
  "file_id": "<string>",
  "job_id": "<string>",
  "organizationId": "<string>",
  "status": "pending",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "file_metadata": {},
  "extraction": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

workflowName
string
required

The name of the workflow.

jobId
string
required

The ID of the job to reprocess.

Body

application/json
incremental
boolean

Whether to use incremental processing.

Response

200
application/json
Successful reprocessing
file_id
string

The unique identifier for the file

job_id
string | null

The unique identifier for the job

organizationId
string

The organization ID

status
enum<string>

The status of the job

Available options:
pending,
pending_type_identified,
pending_type_unknown,
extraction_running,
extracted,
extracted_formatted,
extracted_formatted_and_validated,
failed
Example:

"pending"

createdAt
string

The creation timestamp

updatedAt
string

The last update timestamp

file_metadata
object | null

Metadata associated with the file

extraction
object | null

Extraction details