Lager - v5.2.0
    Preparing search index...

    Defines the structure for the request body for authentication.

    This interface is used when sending login credentials to the server.

    AuthRequestBody

    interface AuthRequestBody {
        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 user attempting to log in.

    password: string

    The password of the user attempting to log in.