rozod
    Preparing search index...

    Variable getUserUniversesConst Api Param

    getUserUniverses: EndpointGeneric<
        {
            cursor?: string;
            isArchived?: boolean;
            limit?: 10
            | 25
            | 50
            | 100;
            sortOrder?: "Asc" | "Desc";
        },
        {
            data: {
                created: string;
                creatorName: string;
                creatorTargetId: number;
                creatorType: string;
                description: string;
                id: number;
                isActive: boolean;
                isArchived: boolean;
                name: string;
                privacyType: string;
                rootPlaceId: number;
                updated: string;
            }[];
            nextPageCursor: string;
            previousPageCursor: string;
        },
        undefined,
    > = ...

    GET https://develop.roblox.com/v1/user/universes Gets a list of universes for the authenticated user. isArchived Whether or not to return archived games. limit The number of results per request. cursor The paging cursor for the previous or next page. sortOrder Sorted by universeId