pressable_get_account_activity_log_actions
Retrieve available activity log actions to monitor and audit account operations for WordPress site management.
Instructions
Get a list of all available activity log actions for the account.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- tools/account.js:27-32 (handler)The implementation of the 'pressable_get_account_activity_log_actions' tool, including its registration, schema, and handler.
name: 'pressable_get_account_activity_log_actions', description: 'Get a list of all available activity log actions for the account.', inputSchema: { type: 'object', properties: {} }, handler: async () => { return await api.get('/account/activity_logs/actions'); }