rozod
    Preparing search index...

    Variable getCloudV2UniversesUniverseIdDataStoresConst Api Param Description

    getCloudV2UniversesUniverseIdDataStores: EndpointGeneric<
        {
            filter?: string;
            maxPageSize?: number;
            pageToken?: string;
            universe_id: string;
        },
        {
            dataStores: {
                createTime: string;
                id: string;
                path: string;
                state: "STATE_UNSPECIFIED"
                | "ACTIVE";
            }[];
            nextPageToken: string;
        },
        undefined,
    > = ...

    GET https://apis.roblox.com/cloud/cloud/v2/universes/:universe_id/data-stores List Data Stores universe_id The universe ID. maxPageSize The maximum number of data stores to return. The service might return fewer than this value. If unspecified, at most 10 data stores are returned. The maximum value is 100 and higher values are set to 100. pageToken A page token, received from a previous call, to retrieve a subsequent page.

    When paginating, all other parameters provided to the subsequent call must match the call that provided the page token. filter This field may be set in order to filter the resources returned.

    The filter field supports a very small subset of CEL:

    Only the id field is supported. Only the startsWith function is available; no other operators nor built-ins are supported.

    Example filter: id.startsWith("foo") Returns a list of data stores.