action britbox_forgot_password { label: "forgotPassword" description: "Request the password of an account's primary profile be reset.\n\nShould be called when a user has forgotten their password.\n\nThis will send an email with a password reset link to the email address of the\nprimary profile of an account.\n\nThe link, once clicked, should take the user to the \"reset-password\" page of the\nwebsite. Here they will enter their new password and submit to the /reset-password\nendpoint here, along with the password reset token provided in the original link.\n" provider: britbox method: POST path: "/request-password-reset" encoding: json input: { type: "object" required: ["email"] properties: { email: { type: "string" description: "The email address of the primary account profile to reset the password for." } } additionalProperties: false } output: { type: "object" additionalProperties: true } }