Remove Organisation From Namespace

Remove Organisation From Namespace

Use this endpoint to remove a namespace from an organisation
Authorized Roles : PROVIDER

Request
URI
DELETE
https://{api_host}/provider/namespaces/{id}/allocate/{organisationId}
COPY
Path Parameters
string
id
Required

ID of the Namespace

string
organisationId
Required

ID of the Organisation


Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns NamespaceDto of type(s) application/vnd.vmware.dms-v1+json
{
    "id": "string",
    "name": "string",
    "description": "string",
    "environment": {
        "id": "string",
        "name": "string"
    },
    "localStorages": [
        {
            "id": "string",
            "name": "string",
            "isDefault": false
        }
    ],
    "cloudStorages": [
        {
            "id": "string",
            "name": "string",
            "isDefault": false
        }
    ],
    "datastores": [
        {
            "id": "string",
            "name": "string",
            "moId": "string",
            "isDefault": false
        }
    ],
    "appNetworks": [
        {
            "id": "string",
            "name": "string",
            "moId": "string",
            "isDefault": false
        }
    ],
    "organisations": [
        {
            "id": "string",
            "name": "string",
            "isPublished": false,
            "databaseCount": 0
        }
    ],
    "status": "string",
    "runtimeInfo": [
        {
            "id": "string",
            "namespaceId": "string",
            "alertType": "string",
            "alertLevel": "string",
            "alertTime": "string"
        }
    ],
    "databaseCount": 0,
    "lastUpdatedTime": "string",
    "links": [
        {
            "rel": "string",
            "href": "string",
            "hreflang": "string",
            "media": "string",
            "title": "string",
            "type": "string",
            "deprecation": "string",
            "profile": "string",
            "name": "string"
        }
    ]
}
string As uuid As uuid
id
Optional

id

string
name
Required

name

string
description
Optional

description

object
environment
Required

environment

array of object
localStorages
Required

localStorages

array of object
cloudStorages
Required

cloudStorages

array of object
datastores
Required

datastores

array of object
appNetworks
Required

appNetworks

array of object
organisations
Required

organisations

string
status
Required

status

Possible values are : INIT, ONLINE, ERROR, WARNING,
array of object
runtimeInfo
Required

runtimeInfo

integer As int32 As int32
databaseCount
Optional

databaseCount

string As date-time As date-time
lastUpdatedTime
Optional

lastUpdatedTime

array of object
links
Optional

links


400

Bad Request

Operation doesn't return any data structure

Code Samples
COPY
                    curl -X DELETE -H 'Authorization: <value>' https://{api_host}/provider/namespaces/{id}/allocate/{organisationId}