rozod
    Preparing search index...

    Variable getCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesScopeIdEntriesEntryIdConst Api Param Description

    getCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesScopeIdEntriesEntryId: EndpointGeneric<
        {
            data_store_id: string;
            entry_id: string;
            scope_id: string;
            universe_id: string;
        },
        {
            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;
        },
        undefined,
    > = ...

    GET https://apis.roblox.com/cloud/cloud/v2/universes/:universe_id/data-stores/:data_store_id/scopes/:scope_id/entries/:entry_id Get Data Store Entry universe_id The universe ID. data_store_id The data-store ID. scope_id The scope ID. entry_id The entry ID. Gets the specified entry.

    To get the entry at a specific revision, add @<revisionId> to the end of the path.

    For example, to get my-entry at the revision ID 08DC3D3F43F9FCC1.0000000001.08DC3D3F43F9FCC1.01, use the path /cloud/v2/universes/1234/data-stores/5678/entries/my-entry@08DC3D3F43F9FCC1.0000000001.08DC3D3F43F9FCC1.01.

    If your entry ID contains one or more @ characters, and you want to get the latest version rather than at any specific revision, append the special revision ID @latest to the end of the path. Otherwise, the segment of the entry ID after the last @ will be interpreted as a revision ID.

    For example, to get the latest revision of my-entry, use the path /cloud/v2/universes/1234/data-stores/5678/entries/my@entry@latest.

    To get the entry that was current at a specific time, add @latest:<timestamp> to the end of the path, where <timestamp> is RFC-3339 formatted. The given timestamp must be after the Unix epoch (1/1/1970) and not more than ten minutes in the future.

    For example, to get the revision of my-entry that was current on 12/2/2024 at 06:00 UTC, use the path /cloud/v2/universes/1234/data-stores/5678/entries/my-entry@latest:2024-12-02T06:00:00Z.