POST
/
workflow
curl --request POST \
  --url https://{api-address}.org.machina.gg/workflow \
  --header 'Content-Type: application/json' \
  --header 'x-api-token: <api-key>' \
  --data '{
  "name": "<string>",
  "title": "<string>",
  "description": "<string>",
  "context-variables": {},
  "inputs": {},
  "outputs": {
    "workflow-status": "$.get('\''event_exists'\'') is not True and '\''skipped'\'' or '\''executed'\''"
  },
  "tasks": [
    {
      "type": "connector",
      "name": "<string>",
      "description": "<string>",
      "condition": "<string>",
      "inputs": {},
      "outputs": {}
    }
  ],
  "status": "active"
}'
{
  "data": {
    "_id": "<string>"
  },
  "status": true
}

Authorizations

x-api-token
string
header
required

API key authentication

Body

application/json
name
string
required

Unique identifier for the workflow

title
string
required

Display title of the workflow

description
string
required

Detailed description of the workflow's purpose

context-variables
object

Configuration settings and API keys for the workflow

inputs
object

Input parameters for the workflow with default values or expressions

outputs
object

Output mappings for the workflow using expressions

tasks
object[]

Array of task definitions that make up the workflow

status
enum<string>
default:active

Current status of the workflow

Available options:
active,
inactive

Response

201
application/json
Workflow created successfully
data
object
status
boolean

Operation status