Skip to content

App Type

Request to GET list of application types for a given namespace. For system namespace, all the application types for the tenant will be returned in the response.

ToolDescription
f5xc-api-telemetryandinsights-app-type-listApplication Types.
ParameterDescriptionExample
namespaceNamespace-
ParameterDescriptionExample
end_timeEnd time of metric collection from which data will be considered to build graph.-
start_timeStart time of metric collection from which data will be considered to build graph.-

Ask Claude to help you work with App Type resources:

“List all app-types in the ‘production’ namespace”

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/app_types" \
-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}/app_types/<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}/app_types" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @app_type.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/app_types/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"