Axinom Mosaic Libraries
    Preparing search index...

    Interface UserSignUpWebhookPayload

    The webhook payload schema for end user sign up.

    interface UserSignUpWebhookPayload {
        custom_data?: { [name: string]: unknown };
        email: string;
        first_name?: string;
        last_name?: string;
        sign_up_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 signing up.

    first_name?: string

    First name.

    last_name?: string

    Last name.

    sign_up_otp: string

    OTP that must be used to confirm the user sign up.