curl --request POST \
--url https://api.ara.so/automations/jobs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"schedule_kind": "<string>",
"every_seconds": 123,
"schedule_expr": "<string>",
"timezone": "UTC",
"payload": {},
"execution_mode": "sandbox_required",
"misfire_policy": "fire_latest_only",
"max_retries": 3,
"retry_backoff_seconds": 30
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}curl --request POST \
--url https://api.ara.so/automations/jobs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"schedule_kind": "<string>",
"every_seconds": 123,
"schedule_expr": "<string>",
"timezone": "UTC",
"payload": {},
"execution_mode": "sandbox_required",
"misfire_policy": "fire_latest_only",
"max_retries": 3,
"retry_backoff_seconds": 30
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
1 - 120^(every|cron)$^(sandbox_required|centralized_ok)$^(fire_all|fire_latest_only|skip_if_late)$0 <= x <= 201 <= x <= 3600Successful Response
Was this page helpful?