POST
/
workflow
/
executor
/
id
/
{id}
curl --request POST \
  --url https://{api-address}.org.machina.gg/workflow/executor/id/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-token: <api-key>' \
  --data '{
  "skip_delay": false,
  "input": {},
  "context": {}
}'
{
  "status": 123,
  "data": {}
}

Authorizations

x-api-token
string
header
required

API key authentication

Path Parameters

id
string
required

Unique ID of the workflow to execute

Body

application/json
skip_delay
boolean
default:false

Whether to execute the workflow immediately

input
object

Input parameters for the workflow execution

context
object

Additional context data for the workflow execution

Response

200
application/json
Workflow execution result or status
status
integer

HTTP status code

data
object

Execution result data