Skip to main content
DELETE
/
namespaces
/
{namespace}
/
worlds
/
{slug}
Delete a world
curl --request DELETE \
  --url https://api.wazoo.dev/namespaces/{namespace}/worlds/{slug} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "source": "<string>"
}
'
{
  "error": {
    "message": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.wazoo.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

namespace
string
required

Target namespace, or _ for the caller default namespace.

slug
string
required

Body

application/json
source

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

Response

No Content