​
Select Service
ves-io-schema-healthcheck-API-List
Published April 5, 2023 | Last modified November 14, 2025
Examples of listing healthcheck
Usecase:
List all healthcheck objects
Request using vesctl:
vesctl configuration list healthcheck --namespace documentation
vesctl yaml response:
errors: []
items:
- annotations: {}
labels: {}
name: healthcheck-details
namespace: documentation
statusSet: []
tenant: acmecorp
uid: 40a4997d-2866-4264-934c-990aad429c4f
- annotations: {}
labels: {}
name: healthcheck-productpage
namespace: documentation
statusSet: []
tenant: acmecorp
uid: 97b617cc-72a1-4277-b8fe-3e0b6ba8403a
- annotations: {}
labels: {}
name: healthcheck-ratings
namespace: documentation
statusSet: []
tenant: acmecorp
uid: 92b2101b-7263-43e5-a825-dd823bc2473a
- annotations: {}
labels: {}
name: healthcheck-reviews
namespace: documentation
statusSet: []
tenant: acmecorp
uid: 72b5ef67-de2f-497c-9c8e-89da2e12e966
Copied!
Request using curl:
curl -X 'GET' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_q2_3kp8z3zs0x5_m7pk1bgb0_ph0000gp_T_go-build4194363419_b001_apidocs.test/host=MTY6VVHQPH/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/documentation/healthchecks'
Copied!
curl response
HTTP/1.1 200 OK
Content-Type: application/json
Date: Thu, 13 Nov 2025 23:06:10 GMT
Vary: Accept-Encoding
{
"items": [
{
"tenant": "acmecorp",
"namespace": "documentation",
"name": "healthcheck-details",
"uid": "40a4997d-2866-4264-934c-990aad429c4f",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
},
{
"tenant": "acmecorp",
"namespace": "documentation",
"name": "healthcheck-productpage",
"uid": "97b617cc-72a1-4277-b8fe-3e0b6ba8403a",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
},
{
"tenant": "acmecorp",
"namespace": "documentation",
"name": "healthcheck-ratings",
"uid": "92b2101b-7263-43e5-a825-dd823bc2473a",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
},
{
"tenant": "acmecorp",
"namespace": "documentation",
"name": "healthcheck-reviews",
"uid": "72b5ef67-de2f-497c-9c8e-89da2e12e966",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
}
],
"errors": [
]
}
Copied!