Top Source¶
Medium Risk
Some operations on this resource may modify or delete data.
POST SAFE Analyst Station Dashboard Transaction Breakdown request.
Tools¶
| Tool | Description |
|---|---|
f5xc-api-shape-top-source-create | POST SAFE Top Sources. |
f5xc-api-shape-top-source-list | GET SAFE Top Sources. |
Parameters¶
Path Parameters¶
| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
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. | - |
Side Effects¶
Operations on this resource may have the following effects:
Creates:
- top-source
Example Usage¶
Ask Claude to help you work with Top Source resources:
Create Top Source¶
"Create a top-source named 'example' in the 'production' namespace"
List Top Sources¶
"List all top-sources in the 'production' namespace"
CURL Examples¶
# List resources
curl -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 resource
curl -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 resource
curl -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 resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/top_sources/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"