Changing Game's Status to Public

Hi, currently I have been messing around with apis and I am wondering how to make a game public using only apis. The game I have is fully published, but the api I am using is returning a 500 error.

data = {
          "id": universeId,
          "__RequestVerificationToken": str(Token),
          "Name": "test",  #name of the game
          "IsPublic": True,
          "AllowStudioAccessToApis": True
        }

        url = "https://www.roblox.com/universes/doconfigure"

        request = publicsession.post(url, data=data)
        print(request.json()) #returns an error

Any help is appreciated thanks.

I have a feeling you might just not have permission to do this on Roblox.

The text of the Roblox Wiki page for HttpService reads:

Requests cannot be made to any Roblox website, such as www.roblox.com.

I should probably mention that I am using python for this, and that I’m not using roblox studio.

In that case, you may have better luck finding support in the ro.py discord server which is linked to in this thread.