pressable_get_account_activity_logs
Retrieve account activity logs to monitor user actions and system events for auditing and troubleshooting purposes.
Instructions
Retrieve activity logs for the account.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| per_page | No |
Implementation Reference
- tools/account.js:22-24 (handler)The handler function for 'pressable_get_account_activity_logs' which calls the API to retrieve account activity logs.
handler: async (args) => { return await api.get('/account/activity_logs', args); } - tools/account.js:12-25 (registration)The tool definition and registration for 'pressable_get_account_activity_logs'.
{ name: 'pressable_get_account_activity_logs', description: 'Retrieve activity logs for the account.', inputSchema: { type: 'object', properties: { page: { type: 'integer' }, per_page: { type: 'integer' } } }, handler: async (args) => { return await api.get('/account/activity_logs', args); } },