Update an existing action’s properties
JWT token obtained from token exchange
Action name
"send_email"
Human-readable description of the action
1 - 500"Updated: Send an email to a specified recipient"
URL where the action will be executed
"https://your-server.com/v2/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"
},
"priority": {
"type": "string",
"enum": ["low", "normal", "high"],
"description": "Email priority level"
}
},
"required": ["recipient", "subject", "body"]
}Action updated successfully