Skip to main content
PUT
https://api.worlds.wazoo.tech
/
v1
/
worlds
/
{worldId}
Update World
curl --request PUT \
  --url https://api.worlds.wazoo.tech/v1/worlds/{worldId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>"
}
'

Path Parameters

worldId
string
required
The unique identifier of the world.

Body Parameters

name
string
The new name of the world.
description
string
The new description of the world.

Response

The endpoint returns a 200 OK status on success.