- Home
- API MCP Server
- tools
- statistics
- observability
- Route Table
Route Table
Gets Route Tables Associated with a Network.
| Tool | Description |
|---|---|
f5xc-api-statistics-route-table-get | GET Network Route Tables. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
id | ID | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
regions | Regions used as filters. | - |
route_table_ids | Route Table IDs used as filters. | - |
site | Site Name | - |
subnet_cidrs | Subnet cidrs used as filters. | - |
subnet_ids | Subnet IDs used as filters. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Route Table resources:
Get Route Table Details
Section titled “Get Route Table Details”“Get details of the route-table named ‘example’ in namespace ‘production‘“
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/route_tables" \ -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}/route_tables/<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}/route_tables" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @route_table.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/route_tables/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"