- Home
- API MCP Server
- tools
- shape
- shape-security
- Top Source
Top Source
POST SAFE Analyst Station Dashboard Transaction Breakdown request.
| Tool | Description |
|---|---|
f5xc-api-shape-top-source-create | POST SAFE Top Sources. |
f5xc-api-shape-top-source-list | GET SAFE Top Sources. |
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 Source resources:
Create Top Source
Section titled “Create Top Source”“Create a top-source named ‘example’ in the ‘production’ namespace”
List Top Sources
Section titled “List Top Sources”“List all top-sources 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_sources" \ -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_sources/<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_sources" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @top_source.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/top_sources/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"