action velopayments_reset_password { label: "Reset password" description: "

Reset password

\n

An email with an embedded link will be sent to the receipient of the email address

\n

The link will contain a token to be used for resetting the password

\n" provider: velopayments method: POST path: "/v1/password/reset" encoding: json input: { type: "object" required: ["email"] properties: { email: { type: "string" format: "email" description: "the email address of the user requesting the reset password" } } } output: { type: "object" additionalProperties: true } }