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

Authorizations

x-api-key
string
header
required

Path Parameters

executionId
string
required

Response

id
string
required
status
enum<string>
required
Available options:
Queued,
Processing,
Failed,
Completed
workflowId
string
required
fileId
string
required
jobId
string | null
required
errorMessage
string | null
required
startedAt
string
required
completedAt
string | null
required