- Home
- API MCP Server
- tools
- telemetry-and-insights
- App Type
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.
| Tool | Description |
|---|---|
f5xc-api-telemetryandinsights-app-type-list | Application Types. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
end_time | End time of metric collection from which data will be considered to build graph. | - |
start_time | Start time of metric collection from which data will be considered to build graph. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with App Type resources:
List App Types
Section titled “List App Types”“List all app-types in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -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 resourcecurl -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 resourcecurl -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 resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/app_types/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"