Deletes list of cluster profiles
DELETEhttps://api.spectrocloud.com/v1/clusterprofiles/bulk
Deletes list of cluster profiles
Request
- application/json
Body
uidsstring[]required
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
deletedCountinteger
failures
undefined[]
isSucceededboolean
messagestring
{
"deletedCount": 0,
"failures": [
{
"errMsg": "string",
"name": "string",
"uid": "string"
}
],
"isSucceeded": true,
"message": "string"
}
- curl
- python
- go
- nodejs
- java
- CURL
curl -L -X DELETE 'https://api.spectrocloud.com/v1/clusterprofiles/bulk' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"uids": [
"string"
]
}'