Skip to main content
GET
/
api
/
v1
/
workflows
/
{workflowId}
/
executions
/
{workflowExecutionId}
cURL
curl --request GET \
  --url https://app.getpaperjet.com/api/v1/workflows/{workflowId}/executions/{workflowExecutionId} \
  --header 'x-api-key: <api-key>'
{
  "status": "Queued",
  "id": "<string>",
  "createdAt": "<string>",
  "ownerId": "<string>",
  "workflowId": "<string>",
  "workflowName": "<string>",
  "fileId": "<string>",
  "fileName": "<string>",
  "jobId": "<string>",
  "errorMessage": "<string>",
  "startedAt": "<string>",
  "completedAt": "<string>",
  "extractedData": "<any>"
}

Authorizations

x-api-key
string
header
required

Path Parameters

workflowId
string
required
workflowExecutionId
string
required

Response

200 - application/json
status
enum<string>
required
Available options:
Queued,
Processing,
Failed,
Completed
id
string
required
createdAt
string
required
ownerId
string
required
workflowId
string
required
workflowName
string
required
fileId
string
required
fileName
string
required
jobId
string | null
required
errorMessage
string | null
required
startedAt
string
required
completedAt
string | null
required
extractedData
any
required