rozod
    Preparing search index...

    Variable getCloudV2UniversesUniverseIdOrderedDataStoresOrderedDataStoreIdScopesScopeIdEntriesConst Api Param Description

    getCloudV2UniversesUniverseIdOrderedDataStoresOrderedDataStoreIdScopesScopeIdEntries: EndpointGeneric<
        {
            filter?: string;
            maxPageSize?: number;
            orderBy?: string;
            ordered_data_store_id: string;
            pageToken?: string;
            scope_id: string;
            universe_id: string;
        },
        {
            nextPageToken: string;
            orderedDataStoreEntries: { id: string; path: string; value: number }[];
        },
        undefined,
    > = ...

    GET https://apis.roblox.com/cloud/cloud/v2/universes/:universe_id/ordered-data-stores/:ordered_data_store_id/scopes/:scope_id/entries List Ordered Data Store Entries universe_id The universe ID. ordered_data_store_id The ordered-data-store ID. scope_id The scope ID. maxPageSize The maximum number of ordered data store entries to return. The service might return fewer than this value. If unspecified, at most 10 ordered data store entries are returned. The maximum value is 100 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. orderBy If specified, results are ordered according to the specified fields.

    Values must be a comma-separated list of fields, with an optional, per-field " desc" suffix to sort by descending rather than ascending values. You can access subfields with a . operator.

    Results may be ordered by the following fields: value.

    Example: "value desc"

    filter This field may be set in order to filter the resources returned.

    We support two comparison operators for this operation: <= and >=.These comparison operators act as a minValue and maxValue for the values returned. If filtering is needed for a value between a minValue and maxValue the user can use the logical operator &&. All tokens in the filter expression must be separated by a single space.

    Example filters: entry <= 10; entry >= 10 && entry <= 30 Returns a list of entries from an ordered data store.