Skip to main content
POST
/
api
/
v1
/
flows
/
execute-command
Execute flow command
curl --request POST \
  --url https://ai-loop.alpeadria.com/api/v1/flows/execute-command \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "flowId": "vsJjkCvDE9piUupc5Glek",
  "command": "Send Quote"
}
'
{
  "status": "success",
  "output": "Command executed"
}

Documentation Index

Fetch the complete documentation index at: https://docs.wavecentric.ai/llms.txt

Use this file to discover all available pages before exploring further.

Triggers an Activepieces automation flow with specific parameters.

Authorizations

Authorization
string
header
required

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

Body

application/json
flowId
string
required
Example:

"vsJjkCvDE9piUupc5Glek"

command
string
required
Example:

"Send Quote"

Response

200 - application/json

Flow triggered successfully.

status
string
output
string