Axinom Mosaic Libraries
    Preparing search index...

    Interface PasswordResetWebhookPayload

    The webhook payload schema for password reset.

    interface PasswordResetWebhookPayload {
        custom_data?: { [name: string]: unknown };
        email: string;
        first_name?: string;
        last_name?: string;
        reset_otp: string;
    }
    Index

    Properties

    custom_data?: { [name: string]: unknown }

    Any custom data that will be passed on to the webhook, coming with the Sign Up request.

    email: string

    Email of the user resetting the password.

    first_name?: string

    First name.

    last_name?: string

    Last name.

    reset_otp: string

    OTP that must be used to confirm the password reset.