- Home
- API MCP Server
- tools
- shape
- shape-security
- Top Location
Top Location
POST SAFE Analyst Station Dashboard Transaction Breakdown request.
| Tool | Description |
|---|---|
f5xc-api-shape-top-location-create | POST SAFE Top Locations. |
f5xc-api-shape-top-location-list | GET SAFE Top Locations. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
from | Timestamp representing start date of the requested period in millieseconds. | - |
limit | Limited number of records. | - |
to | Timestamp representing end date of the requested period in millieseconds. | - |
version | The API version to use. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Top Location resources:
Create Top Location
Section titled “Create Top Location”“Create a top-location named ‘example’ in the ‘production’ namespace”
List Top Locations
Section titled “List Top Locations”“List all top-locations in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/top_locations" \ -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}/top_locations/<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}/top_locations" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @top_location.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/top_locations/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"