rozod
    Preparing search index...

    Variable postCloudV2UniversesUniverseIdMemoryStoreQueuesQueueIdItemsConst Api Param Description

    postCloudV2UniversesUniverseIdMemoryStoreQueuesQueueIdItems: EndpointGeneric<
        { queue_id: string; universe_id: string },
        {
            data: unknown;
            expireTime: string;
            id: string;
            path: string;
            priority: number;
            ttl: string;
        },
        {
            data: unknown;
            expireTime: string;
            id: string;
            path: string;
            priority: number;
            ttl: string;
        },
    > = ...

    POST https://apis.roblox.com/cloud/cloud/v2/universes/:universe_id/memory-store/queues/:queue_id/items Create Memory Store Queue Item body universe_id The universe ID. queue_id The queue ID. Creates a new queue item.

    If ttl is set, the item will automatically be removed from the queue after the time interval specified.

    If a numerical priority is set, the item will be inserted into the queue based on the priority value. The higher the value, the closer to the front of the queue the item will be. If priority values are the same then the item will be inserted after existing values with the same priority.