action c19qrserver_post_verify_password_change { label: "Used for resetting your password when you forgot it" description: "Another endpoint will generate a password reset code for you. You should use the client app to submit the reset code along with the new password to change your password.\n" provider: c19qrserver method: POST path: "/verifyPasswordChange" encoding: json input: { type: "object" properties: { guid: { type: "string" description: "The password reset code" } password: { type: "string" description: "The new password" } } } output: { type: "object" additionalProperties: true } }