​
Select Service
ves-io-schema-api_group_element-API-List
Published April 5, 2023 | Last modified November 14, 2025
Examples of listing api_group_element
Usecase:
List api_group_elements from ves.io/shared
Request using vesctl:
vesctl configuration list api_group_element --namespace ves-io-shared
vesctl yaml response:
errors: []
items:
- annotations: {}
labels: {}
name: ves-io-public-advertise-policys-read-api
namespace: shared
statusSet: []
tenant: ves-io
uid: 4be21de5-d654-4cf2-a50d-c6334d89a2a1
- annotations: {}
labels: {}
name: ves-io-public-virtual-hosts-read-api
namespace: shared
statusSet: []
tenant: ves-io
uid: a4666be9-f7da-4809-ab11-374dbf6ffcdc
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/web/namespaces/ves-io-shared/api_group_elements'
Copied!
curl response
HTTP/1.1 200 OK
Content-Length: 880
Content-Type: application/json
Date: Thu, 13 Nov 2025 23:05:38 GMT
Vary: Accept-Encoding
{
"items": [
{
"tenant": "ves-io",
"namespace": "shared",
"name": "ves-io-public-advertise-policys-read-api",
"uid": "4be21de5-d654-4cf2-a50d-c6334d89a2a1",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
},
{
"tenant": "ves-io",
"namespace": "shared",
"name": "ves-io-public-virtual-hosts-read-api",
"uid": "a4666be9-f7da-4809-ab11-374dbf6ffcdc",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
}
],
"errors": [
]
}
Copied!