SetEntry - Open Cloud DataStores [Python]

Hello Developers,
I started working on a small fun project, it doesn’t really matter what it is about, but it works with the Roblox DataStores, recently Roblox announced DataStores APIs for Open Cloud which is exactly what I’m trying to use right now.

I’m still new to python, so don’t judge me…

I made a successful GetEntry GET request, but when I had to make a SetEntry POST request, I started to experience some issues.

url = "https://apis.roblox.com/datastores/v1/universes/" + universeId + "/standard-datastores/datastore/entries/entry"
headers = { 'x-api-key' : "key-here", 'content-md5' : str(hashlib.md5(str(newData).encode('utf-8')))}
params  = {"datastoreName" : datastore, "entryKey" : entryKey}
setRequest = requests.post(url=url, headers=headers, params=params)
requestData = requests.get(url=url, headers=headers, params=params)
            
print(str(setRequest.content))
return str(requestData.content)

…this is my code so far, when I try to run it I get a 200 OK response but the Data still doesn’t change with no errors being given or anything else.

I don’t know what’s right or what’s wrong but help would be appreciated,
Thanks!

I’m making this reply so it shows again on the top.

Please help, I need this as soon as possible.

(Scroll up ^)