Skip to content

Get Schema Update

GET list of schema pairs, current and updated, for each endpoint in the request or all pending changes if empty list is provided. NOTE: any API endpoint defined in user swagger files should be ignored DEPRECATED. USE virtual host custom API GetAPIEndpointsSchemaUpdates.

ToolDescription
f5xc-api-virtual-get-schema-update-createGET API Endpoints Schema Updates.
ParameterDescriptionExample
nameName-
namespaceNamespace-

Ask Claude to help you work with Get Schema Update resources:

“Create a get-schema-update named ‘example’ in the ‘production’ namespace”

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/get_schema_updates" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Get specific resource
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/get_schema_updates/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Create resource
curl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/get_schema_updates" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @get_schema_update.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/get_schema_updates/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"