rozod
    Preparing search index...

    Variable getCloudV2UniversesUniverseIdMemoryStoreQueuesQueueIdItemsReadConst Api Param Description

    getCloudV2UniversesUniverseIdMemoryStoreQueuesQueueIdItemsRead: EndpointGeneric<
        {
            allOrNothing?: boolean;
            count?: number;
            invisibilityWindow?: string;
            queue_id: string;
            universe_id: string;
        },
        {
            items: {
                data: unknown;
                expireTime: string;
                id: string;
                path: string;
                priority: number;
                ttl: string;
            }[];
            readId: string;
        },
        undefined,
    > = ...

    GET https://apis.roblox.com/cloud/cloud/v2/universes/:universe_id/memory-store/queues/:queue_id/items:read Read Memory Store Queue Items universe_id The universe ID. queue_id The queue ID. count The number of items to read from the queue If unspecified, 1 item will be returned. The maximum value is 200; values above 200 will be coerced to 200. allOrNothing If all_or_nothing is true and the requested number of objects is not available, will return a 404 Error.

    Otherwise, will return the path and read_id of the read operation and a list of the MemoryStoreQueue items. invisibilityWindow Invisibility window for items read, in seconds.

    Items read are invisible in subsequent reads during the invisibility window duration.

    It must be written in seconds greater than 0 and end with s.

    Defaults to 30s. Returns the specified number of items at the front of the queue.