curl --request DELETE \
--url https://{controlPlaneURL}/api/svc/v1/clusters/{id} \
--header 'Authorization: Bearer <token>'
{
"message": "<string>"
}
Delete cluster associated with provided cluster id
curl --request DELETE \
--url https://{controlPlaneURL}/api/svc/v1/clusters/{id} \
--header 'Authorization: Bearer <token>'
{
"message": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Cluster id of the cluster
Returns success message on successful deletion
The response is of type object
.
Was this page helpful?