Skip to main content
GET
/
cron-jobs
/
executions
/
{id}
Get execution details
curl --request GET \
  --url https://app.azalt.co/api/v1/cron-jobs/executions/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "cronJobId": "<string>",
  "status": "running",
  "triggerType": "scheduled",
  "triggeredById": "<string>",
  "startedAt": "<string>",
  "finishedAt": "<string>",
  "executionTimeMs": 123,
  "logs": "<string>",
  "error": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>",
  "output": "<unknown>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required
Minimum string length: 1

Response

Successful response

id
string
required
cronJobId
string
required
status
enum<string>
required
Available options:
running,
success,
failed,
timeout
triggerType
enum<string>
required
Available options:
scheduled,
manual
triggeredById
string | null
required
startedAt
string
required
finishedAt
string | null
required
executionTimeMs
number | null
required
logs
string | null
required
error
string | null
required
createdAt
string
required
updatedAt
string
required
output
unknown