I am making a DataStores mager app in C# and i am using the new Open cloud endpoints but apparently docs are outdated and i am getting error 400 every time i submit a request
This is the url i am making the requests to
string path = $"https://apis.roblox.com/datastores/v1/universes/{universe_id.Text}/standard-datastores/datastore/entries/entry?datastoreName={datastoreName}&entryKey=key";
It should work because the key and the datastore exist and that error as said in the docs should appear only if there is an invalid value or if those don’t exist.
the datastoreName variable is text. and the value of entryKey
is “key” which is the name of the key i want to get in the datastore.
datastoreName, entryKey and universe id seem to be the only required parameters
Any idea?