GET
/
api
/
v1
/
document-extractions
/
{workflowName}
/
{jobId}
curl --request GET \
  --url https://api.repromptai.com/api/v1/document-extractions/{workflowName}/{jobId} \
  --header 'Authorization: Bearer <token>'
{
  "file_id": "file_12345",
  "organizationId": "org_12345",
  "status": "extracted",
  "createdAt": "2023-01-01T00:00:00Z",
  "updatedAt": "2023-01-02T00:00:00Z",
  "file_metadata": "{\"pdf_type\": \"invoice\"}",
  "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 retrieve.

Response

200
application/json
Job details retrieved successfully
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