Skip to main content
GET
/
v0
/
tasks
/
schedule
/
{taskId}
Get task schedule
curl --request GET \
  --url https://api.avidoai.com/v0/tasks/schedule/{taskId} \
  --header 'x-api-key: <api-key>'
{
  "taskId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "criticality": "LOW",
  "cron": "<string>",
  "jobId": "<string>",
  "nextRunAt": "2023-11-07T05:31:56Z",
  "lastRunAt": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-key
string
header
required

Your unique Avido API key

Path Parameters

taskId
string<uuid>
required

Response

Success

Response schema for task schedule

taskId
string<uuid>
required
criticality
enum<string>
required
Available options:
LOW,
MEDIUM,
HIGH
cron
string
required
jobId
string
required
nextRunAt
string<date-time> | null
required
lastRunAt
string<date-time> | null
required
I