Skip to main content
PUT
/
worlds
/
{slug}
Update a world (default namespace)
curl --request PUT \
  --url https://api.wazoo.dev/worlds/{slug} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "source": "<string>",
  "label": "<string>",
  "description": "<string>"
}
'
{
  "error": {
    "message": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

slug
string
required

Body

application/json
source

Optional; defaults to the world identified by the URL path.

label
string
description
string | null

Response

No Content