​
Select Service
ves-io-schema-endpoint-API-List
Published April 5, 2023 | Last modified November 14, 2025
Examples of listing endpoint
Usecase:
List all endpoints in the current namespace
Request using vesctl:
vesctl configuration list endpoint --namespace documentation
vesctl yaml response:
errors: []
items:
- annotations: {}
labels: {}
name: details-endpoint
namespace: documentation
statusSet: []
tenant: acmecorp
uid: 39f2b086-b611-4d5e-88c5-ba2f98cf72f5
- annotations: {}
labels: {}
name: productpage-endpoint
namespace: documentation
statusSet: []
tenant: acmecorp
uid: 0665e56b-e212-40d0-b8f0-f1ee880f57a2
- annotations: {}
labels: {}
name: ratings-endpoint
namespace: documentation
statusSet: []
tenant: acmecorp
uid: 02e6b741-977a-427d-8778-7c6c5562f604
- annotations: {}
labels: {}
name: reviews-endpoint
namespace: documentation
statusSet: []
tenant: acmecorp
uid: 1b0c3430-e439-49dd-b2b1-2bbedc534eb9
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/endpoints'
Copied!
curl response
HTTP/1.1 200 OK
Content-Type: application/json
Date: Thu, 13 Nov 2025 23:06:03 GMT
Vary: Accept-Encoding
{
"items": [
{
"tenant": "acmecorp",
"namespace": "documentation",
"name": "details-endpoint",
"uid": "39f2b086-b611-4d5e-88c5-ba2f98cf72f5",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
},
{
"tenant": "acmecorp",
"namespace": "documentation",
"name": "productpage-endpoint",
"uid": "0665e56b-e212-40d0-b8f0-f1ee880f57a2",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
},
{
"tenant": "acmecorp",
"namespace": "documentation",
"name": "ratings-endpoint",
"uid": "02e6b741-977a-427d-8778-7c6c5562f604",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
},
{
"tenant": "acmecorp",
"namespace": "documentation",
"name": "reviews-endpoint",
"uid": "1b0c3430-e439-49dd-b2b1-2bbedc534eb9",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
}
],
"errors": [
]
}
Copied!