rozod
    Preparing search index...

    Variable getCloudV2UniversesUniverseIdDataStoresDataStoreIdEntriesConst Api Param Description

    getCloudV2UniversesUniverseIdDataStoresDataStoreIdEntries: EndpointGeneric<
        {
            data_store_id: string;
            filter?: string;
            maxPageSize?: number;
            pageToken?: string;
            showDeleted?: boolean;
            universe_id: string;
        },
        {
            dataStoreEntries: {
                attributes: Record<string, never>;
                createTime: string;
                etag: string;
                id: string;
                path: string;
                revisionCreateTime: string;
                revisionId: string;
                state: "STATE_UNSPECIFIED" | "ACTIVE" | "DELETED";
                users: string[];
                value: unknown;
                [key: string]: unknown;
            }[];
            nextPageToken: string;
        },
        undefined,
    > = ...

    GET https://apis.roblox.com/cloud/cloud/v2/universes/:universe_id/data-stores/:data_store_id/entries List Data Store Entries universe_id The universe ID. data_store_id The data-store ID. maxPageSize The maximum number of data store entries to return. The service might return fewer than this value. If unspecified, at most 10 data store entries are returned. The maximum value is 256 and higher values are set to 256. 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") showDeleted If true, resources marked for pending deletion will be included in the results. Returns a list of entries from a data store.

    Only the path and id fields are populated; use GetDataStoreEntry to retrieve other fields.

    Specify the wildcard scope (-) to list entries from all scopes.