Delete Custom Datacenters

Delete Custom Datacenters

Delete custom datacenters.
NOTE: Deletion of custom datacenters is not synchronous. As a result,
the delete operation may not happen immediately. Furthermore, there is no way
to track the status of the deletion operation. It is recommended to query back
the system and ensure that the resources (datacenters) with given ids are not present any more.
NOTE: This API is only for custom datacenters deletion. Any invalid or none custom datacenter ids in the request body will be ignored.

Request
URI
DELETE
https://{api_host}/suite-api/api/resources/customdatacenters
COPY
Request Body

Custom datacenter ids

uuid-values of type(s) application/json
Required

Show optional properties

{
    "uuids": [
        {}
    ]
}
"{\n  \"uuids\" : [ \"b2df1cc4-51e8-47de-a52f-e916093358ca\", \"6ba80c25-6c99-45dd-a497-bfc32e3d6f10\" ]\n}"
array of string
uuids
Required

Represents a list of UUID(s)

Authentication
This operation uses the following authentication methods.
Responses
204

Custom datacenter was deleted successfully

Operation doesn't return any data structure

Code Samples
COPY
                    curl -X DELETE -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"uuids":["string"]}' https://{api_host}/suite-api/api/resources/customdatacenters