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

Response

200
application/json

Successful reprocessing

The response is of type object.