Skip to main content
DELETE
/
namespaces
/
{namespace_id}
Delete a namespace
curl --request DELETE \
  --url https://api.vidnavigator.com/v1/namespaces/{namespace_id} \
  --header 'X-API-Key: <api-key>'
{
  "status": "success",
  "message": "<string>"
}
Delete a namespace. The default namespace cannot be deleted. Files previously assigned to this namespace will have the association removed but are not deleted.

Example Request

curl -X DELETE "https://api.vidnavigator.com/v1/namespaces/64a1b2c3d4e5f6789abc0003" \
  -H "X-API-Key: YOUR_API_KEY"

Success Response

{
  "status": "success",
  "message": "Namespace deleted successfully"
}

Authorizations

X-API-Key
string
header
required

API key authentication. Include your VidNavigator API key in the X-API-Key header.

Path Parameters

namespace_id
string
required

The ID of the namespace to delete

Response

Namespace deleted successfully

status
enum<string>
Available options:
success
message
string