Appearance
Actions
Automations an assistant can invoke.
6 tools — 2 read, 4 write.
| Tool | What it does | |
|---|---|---|
cancel_action | write | Cancel a drafted action you created. |
create_action | write | Draft an action (bound to a capability + args) for a human to review, edit, and trigger. |
get_action | read | Get the full details of an action by ID. |
list_actions | read | List actions in the org, optionally filtered by status, assignee, or requester. |
reject_action | write | Dismiss a drafted action without running it. |
trigger_action | write | Trigger a drafted action — runs the underlying capability as the user. |
Calling these
Over MCP, find one with search_tools, then run it with execute_tool. Over REST, POST /api/capabilities/<tool> with the arguments as the JSON body. Either way, fetch the input schema for the tool you're about to call rather than guessing — get_tool_schema over MCP, or GET /api/capabilities?name=<tool> over REST.
See How the API works for auth, errors and the shared envelope.