rozod
    Preparing search index...

    Variable getUniversesUniverseIdDatastoresDatastoreEntriesEntryVersionsVersionConst Api Param Description

    getUniversesUniverseIdDatastoresDatastoreEntriesEntryVersionsVersion: EndpointGeneric<
        {
            datastoreName?: null
            | string;
            entryKey?: null | string;
            scope?: null | string;
            universeId: number;
            versionId?: null | string;
        },
        Record<string, never>,
        undefined,
    > = ...

    GET https://apis.roblox.com/cloud/v1/universes/:universeId/standard-datastores/datastore/entries/entry/versions/version Get entry version. universeId The identifier of the experience with data stores that you want to access. You can copy your experience's Universe ID on the Creator Dashboard. datastoreName The name of the data store. entryKey The key identifying the entry. versionId The version to inspect. scope The value is global by default. See Scopes. Returns the value and metadata of a specific version of an entry.

    Metadata can be found in the response headers like the following:

    content-md5: zuYxEhwuySMv0i8CitXImw==
    roblox-entry-version: 08D9E6A3F2188CFF.0000000001.08D9E6A3F2188CFF.01
    roblox-entry-created-time: 2022-02-02T23:30:06.5388799+00:00
    roblox-entry-version-created-time: 2022-02-02T23:30:06.5388799+00:00
    roblox-entry-attributes: { "myAttribute": "myValue" }
    roblox-entry-userids: [1, 2, 3]
    
    Header Description
    content-md5 The base-64 encoded MD5 checksum of the content. See Content-MD5.
    roblox-entry-version The version of the returned entry.
    roblox-entry-created-time The time at which the entry was created.
    roblox-entry-version-created-time The time at which this particular version was created.
    roblox-entry-attributes Attributes tagged with the entry. Serialized JSON map object.
    roblox-entry-userids Comma-separated list of Roblox user IDs tagged with the entry.