action rumble_reset_account_user_password { label: "Sends the user a password reset email" provider: rumble method: PATCH path: "/account/users/{user_id}/resetPassword" encoding: json input: { type: "object" properties: { user_id: { type: "string" format: "uuid" } } required: ["user_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }