Update an action
Actions
Update an action
Update an existing action’s properties
PUT
Update an action
Authorizations
JWT token obtained from token exchange
Path Parameters
Action name
Pattern:
^[a-z0-9_]+$Example:
"send_email"
Body
application/json
Human-readable description of the action
Required string length:
1 - 500Example:
"Updated: Send an email to a specified recipient"
URL where the action will be executed
Example:
"https://your-server.com/v2/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"
},
"priority": {
"type": "string",
"enum": ["low", "normal", "high"],
"description": "Email priority level"
}
},
"required": ["recipient", "subject", "body"]
}Response
Action updated successfully