Skip to main content
GET
/
api
/
v1
/
executions
cURL
curl --request GET \
  --url https://app.getpaperjet.com/api/v1/executions \
  --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>"
  }
]

Authorizations

x-api-key
string
header
required

Response

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