pterowraptyl
    Preparing search index...

    Interface UserRequest

    Represents the payload for creating or updating a user.

    interface UserRequest {
        email?: string;
        external_id?: string;
        first_name?: string;
        last_name?: string;
        password?: string;
        root_admin?: boolean;
        username?: string;
    }
    Index

    Properties

    email?: string

    User's email address. Required when creating a new user.

    external_id?: string

    Optional external identifier for the user.

    first_name?: string

    User's first name. Required when creating a new user.

    last_name?: string

    User's last name. Required when creating a new user.

    password?: string

    User's password.

    root_admin?: boolean

    Whether the user should have root admin privileges.

    username?: string

    User's username. Required when creating a new user.