action rumble_reset_account_user_lockout { label: "Resets the user's lockout status" provider: rumble method: PATCH path: "/account/users/{user_id}/resetLockout" encoding: json input: { type: "object" properties: { user_id: { type: "string" format: "uuid" } } required: ["user_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }