Skip to content

Top Source

POST SAFE Analyst Station Dashboard Transaction Breakdown request.

ToolDescription
f5xc-api-shape-top-source-createPOST SAFE Top Sources.
f5xc-api-shape-top-source-listGET SAFE Top Sources.
ParameterDescriptionExample
namespaceNamespace-
ParameterDescriptionExample
fromTimestamp representing start date of the requested period in millieseconds.-
limitLimited number of records.-
toTimestamp representing end date of the requested period in millieseconds.-
versionThe API version to use.-

Ask Claude to help you work with Top Source resources:

“Create a top-source named ‘example’ in the ‘production’ namespace”

“List all top-sources in the ‘production’ namespace”

Terminal window
# 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}"