Skip to main content
POST
/
api
/
v1
/
automation
/
template
Create templates.
curl --request POST \
  --url https://api.revong.com/api/v1/automation/template \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "category": "<string>",
  "desc": "<string>",
  "componentId": "<string>",
  "componentVersion": 123,
  "triggerUser": "<string>",
  "inputs": {},
  "options": {
    "skipLibs": true,
    "legacyResults": true,
    "hideRequest": true,
    "hideResponse": true
  }
}'

Authorizations

Authorization
string
header
required

Bearer token with Platform JWT token or API Key.

Body

application/json
name
string
required

Name.

category
string

Category.

desc
string

Description.

componentId
string

Component identifier.

componentVersion
number

Component version, if left empty it will use latest component version).

triggerUser
string

Invoke job on behalf of specific account.

inputs
object
options
object

Options.

Response

Job scheduled.