Skip to main content
POST
/
api
/
v1
/
automation
/
schedule
Schedule create.
curl --request POST \
  --url https://api.revong.com/api/v1/automation/schedule \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "category": "<string>",
  "active": true,
  "desc": "<string>",
  "cron": "<string>",
  "jobTemplateId": "<string>",
  "timezone": "<string>"
}'

Authorizations

Authorization
string
header
required

Bearer token with Platform JWT token or API Key.

Body

application/json
name
string
required

Provide name of result resource and automation itself.

cron
string
required

Cron for schedule.

jobTemplateId
string
required

Template Id.

timezone
string
required

Timezone.

category
string

Category.

active
boolean

Active.

desc
string

Description.

Response

Job scheduled.