rozod
    Preparing search index...

    Variable getCloudV2UniversesUniverseIdDataStoresDataStoreIdEntriesEntryIdListRevisionsConst Api Param Description

    getCloudV2UniversesUniverseIdDataStoresDataStoreIdEntriesEntryIdListRevisions: EndpointGeneric<
        {
            data_store_id: string;
            entry_id: string;
            filter?: string;
            maxPageSize?: number;
            pageToken?: string;
            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/:entry_id:listRevisions List Data Store Entry Revisions universe_id The universe ID. data_store_id The data-store ID. entry_id The entry ID. maxPageSize The maximum number of revisions to return per page.

    The service might return fewer than the maximum number of revisions. If unspecified, at most 10 revisions are returned. The maximum value is 100 values 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 Supports the following subset of CEL:

    Only the &&, <=, and >= operators are supported. Only the revision_create_time field is supported.

    For example:

    "revision_create_time >= 2000-01-01T00:00:00Z && revision_create_time <= 2001-01-01T00:00:00Z" List revisions of the data store entry.

    This method returns partial data store entries.

    In particular, only the path, id, createTime, revisionCreateTime, revisionId, etag, and state fields are populated. Both the path and id fields will have an @<version> suffix.

    In order to get the full entry at a revision, you can use the provided path field with the GetDataStoreEntry method, i.e. GET /cloud/v2/universes/1234/data-stores/5678/entries/my-entry@<version>.