Register a new action with Flowent. The action’s webhook URL will be validated with a test request during registration.
JWT token obtained from token exchange
Action name (lowercase, underscores, no spaces)
1 - 100"send_email"
Human-readable description of the action
1 - 500"Send an email to a specified recipient"
URL where the action will be executed (must be HTTPS in production)
"https://your-server.com/actions/send_email"
JSON Schema defining the action's parameters
{
"type": "object",
"properties": {
"recipient": {
"type": "string",
"description": "Email address of the recipient"
},
"subject": {
"type": "string",
"description": "Email subject line"
},
"body": {
"type": "string",
"description": "Email body content"
}
},
"required": ["recipient", "subject", "body"]
}Action created successfully