rozod
    Preparing search index...

    Variable patchCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesScopeIdEntriesEntryIdConst Api Param Description

    patchCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesScopeIdEntriesEntryId: EndpointGeneric<
        {
            allowMissing?: boolean;
            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;
        },
        {
            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;
        },
    > = ...

    PATCH https://apis.roblox.com/cloud/cloud/v2/universes/:universe_id/data-stores/:data_store_id/scopes/:scope_id/entries/:entry_id Update Data Store Entry body universe_id The universe ID. data_store_id The data-store ID. scope_id The scope ID. entry_id The entry ID. allowMissing If set to true, and the data store entry is not found, a data store entry is created. Updates the value, attributes, and users of an entry.

    Updating specific revisions of the entry is unsupported. If you specify a revision ID in the path and allow_missing is true, the update request will instead create a new entry with the @<revisionId> suffix as part of the key.

    Partial update is unsupported. If attributes or users are not provided when updating the value, they will be cleared. Value must always be provided when updating an entry.