Skip to main content
PUT
/
worlds
/
{world}
Update a world
curl --request PUT \
  --url https://api.wazoo.dev/worlds/{world} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "slug": "<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

world
string
required

Body

application/json
slug
string
label
string
description
string | null

Response

No Content