Open Cloud Memory Stores API [Beta]

Hello,
I have a question about the Open Cloud Memory Stores API.
I ran the curl command listed in the reference, but it returned 404 Not Found.
Could you tell me what the cause is?

{
    "type": "https://tools.ietf.org/html/rfc9110#section-15.5.5",
    "title": "Not Found",
    "status": 404,
    "traceId": "00-xxxxxxxx-xxxxxxxxx-00"
}

The above response was returned for all APIs: MemoryStore, MemoryStoreQueueItem, and MemoryStoreSortedMapItem.
Other APIs (such as the Standard Data Stores API) returned the correct response.

Thank you in advance.

Bold text is intended for highlighting or emphasising certain parts of a post, but highlight everything and then you highlight nothing

1 Like

Hmm, could you try it again now? We might have had some stale settings from our private beta

1 Like

thank you!
404 Not Found resolved

However, the response of “Read Memory Store Queue Items API” is different from what is described in the reference.
‘readId’ not found.

{
  "queueItems": [
    {
      "path":,
      "data":,
      "priority":,
      "expireTime":
    }
  ],
  "id": "xxxxxxxxxxxxxx"
}

Should I use “id” instead of “readId” for “Discard Memory Store Queue Items API”?
Thank you.

Yes, please use that id as the readId for Discard. I’ll look into changing the name from idreadId to avoid confusion. Thank you!

2 Likes

Highlights my post against the endless wall of other posts

The return type for listing items in a sorted map shows the items listed under memoryStoreSortedMapItems (in the API reference), but I think it was renamed to items.

Hello,
I have a question about the Open Cloud Flush Memory Store API.
I accessed the path of the Operation object to receive the API results, but 404 Not Found and JSON were returned.

{
  "errors": [
    {
      "code": 0,
      "message": ""
    }
  ]
}

Could you please let me know if this is a normal response?
Thank you.

Hello! What is the url that you’re trying to hit? You can also dm me with more information if thats easier.

1 Like

sorry.
The text was hidden.
I have fixed it, could you please check it?

I will supplement
Open Cloud Flush Memory Store API response

{
  "path": "cloud/v2/universes/xxxxxxxxxx/operations/xxxxxxxxxxxxxxxxxxxxxx",
  "done": false
}


get results request

curl -L -X GET "https://apis.roblox.com/{{path}}" -H "x-api-key: zzzzzzzzzzzzzzzzzzz"


response 404 Not Found

{
  "errors": [
    {
      "message": "",
      "code": 0
    }
  ]
}