Skip to main content
POST
/
v1
/
orchestration
/
workflows
Create Workflow
curl --request POST \
  --url https://api.example.com/v1/orchestration/workflows \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "trigger_type": "manual",
  "steps": [
    {}
  ]
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required
Required string length: 1 - 200
description
string | null
Maximum string length: 2000
trigger_type
enum<string>
default:manual
Available options:
manual,
scheduled,
event
steps
Steps · object[]

Response

Successful Response

The response is of type Response Create Workflow V1 Orchestration Workflows Post · object.