# List integration actions Returns all available actions for a specific integration. Actions are capabilities like "Create Page" in Notion or "Send Message" in Slack. Endpoint: GET /skills/{integration}/actions Version: 1.0.0 Security: ApiKeyAuth, OrgIdAuth ## Path parameters: - `integration` (string, required) Integration identifier (e.g., notion, slack, salesforce) Example: "notion" ## Response 200 fields (application/json): - `actions` (array) - `actions.action` (string, required) Action identifier Example: "NOTION_CREATE_PAGE" - `actions.name` (string, required) Human-readable action name Example: "Create a Page" - `actions.description` (string, required) Action description Example: "Create a new page in a Notion database" - `actions.parameters` (object) JSON schema describing action parameters Example: {"type":"object","properties":{"parent":{"type":"object","description":"Parent database or page"},"properties":{"type":"object","description":"Page properties"}}} ## Response 400 fields (application/json): - `error` (string) Error message Example: "Missing required headers" - `details` (string) Additional error details Example: "x-api-key and x-org-id headers are required" ## Response 401 fields (application/json): - `error` (string) Error message Example: "Missing required headers" - `details` (string) Additional error details Example: "x-api-key and x-org-id headers are required" ## Response 403 fields (application/json): - `error` (string) Error message Example: "Missing required headers" - `details` (string) Additional error details Example: "x-api-key and x-org-id headers are required" ## Response 404 fields (application/json): - `error` (string) Error message Example: "Missing required headers" - `details` (string) Additional error details Example: "x-api-key and x-org-id headers are required"