curl --request GET \
--url https://{controlPlaneURL}/api/svc/v1/clusters/{id}/is-connected \
--header 'Authorization: Bearer <token>'
{
"isConnected": true
}
Get the status of provided cluster
curl --request GET \
--url https://{controlPlaneURL}/api/svc/v1/clusters/{id}/is-connected \
--header 'Authorization: Bearer <token>'
{
"isConnected": true
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Cluster id of the cluster
Returns the status of provided cluster
The response is of type object
.
Was this page helpful?