Register a new action
Actions
Register a new action
Register a new action with Flowent. The action’s webhook URL will be validated with a test request during registration.
POST
Register a new action
Authorizations
JWT token obtained from token exchange
Body
application/json
Action name (lowercase, underscores, no spaces)
Required string length:
1 - 100Pattern:
^[a-z0-9_]+$Example:
"send_email"
Human-readable description of the action
Required string length:
1 - 500Example:
"Send an email to a specified recipient"
URL where the action will be executed (must be HTTPS in production)
Example:
"https://your-server.com/actions/send_email"
JSON Schema defining the action's parameters
Example:
{
"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"]
}Response
Action created successfully