Lager - v5.2.0
    Preparing search index...

    Interface AuthRegisterRequestBody

    Defines the structure for the request body to register a new user.

    This interface is used when sending data to the server to create a new user account.

    AuthRegisterRequestBody

    interface AuthRegisterRequestBody {
        api_key: string;
        email: string;
        password: string;
    }
    Index

    Properties

    api_key: string

    The API key required for authentication to the server.

    email: string

    The email address of the new user.

    password: string

    The password for the new user account.