Skip to main content
DELETE
/
v1
/
namespaces
/
{namespace_identifier}
Delete Namespace
curl --request DELETE \
  --url https://api.mixpeek.com/v1/namespaces/{namespace_identifier} \
  --header 'Authorization: Bearer <token>'
{
  "status": 123,
  "error": {
    "message": "<string>",
    "type": "<string>",
    "code": "<string>",
    "details": {}
  },
  "success": false
}

Authorizations

Authorization
string
header
required

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

Path Parameters

namespace_identifier
string
required

Either the namespace name or namespace ID

Examples:

"my_namespace"

"ns_1234567890"

Query Parameters

force
boolean
default:false

Force deletion even if batches are still processing. Without this flag, the endpoint returns 409 when active batches exist.

Response

Successful Response