action rumble_get_account_keys { label: "Get all active API keys" provider: rumble method: GET path: "/account/keys" encoding: json output: { type: "array" items: { type: "object" required: ["id"] properties: { client_id: { type: "string" format: "uuid" } comment: { type: "string" } counter: { type: "integer" format: "int64" } created_at: { type: "integer" format: "int64" } created_by: { type: "string" format: "email" } id: { type: "string" format: "uuid" } inactive: { type: "boolean" } last_used_at: { type: "integer" format: "int64" } last_used_ip: { type: "string" } last_used_ua: { type: "string" } organization_id: { type: "string" format: "uuid" } token: { type: "string" } type: { type: "string" } usage_limit: { type: "integer" format: "int64" } usage_today: { type: "integer" format: "int64" } } } } }