Skip to main content
POST
/
automations
/
runtime
/
jobs
Runtime Create Job
curl --request POST \
  --url https://api.ara.so/automations/runtime/jobs \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "message": "<string>",
  "schedule_kind": "<string>",
  "every_seconds": 2,
  "schedule_expr": "<string>",
  "timezone": "UTC",
  "deliver": false
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Headers

authorization
string | null

Body

application/json
name
string
required
Required string length: 1 - 120
message
string
required
Minimum string length: 1
schedule_kind
string
required
Pattern: ^(every|cron)$
every_seconds
integer | null
Required range: x >= 1
schedule_expr
string | null
timezone
string
default:UTC
deliver
boolean
default:false

Response

Successful Response