Skip to content

Detected Domain

GET the detected domains data for the tenant.

ToolDescription
f5xc-api-shape-detected-domain-listGET Detected Domains.
ParameterDescriptionExample
namespaceNamespace-
ParameterDescriptionExample
durationLength in Days to fetch domain.-
locationsList of locations if backend needs to filter with locations passed.-
riskGET the list of high risk domains, all domains is by default.-

Ask Claude to help you work with Detected Domain resources:

“List all detected-domains in the ‘production’ namespace”

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/detected_domains" \
-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}/detected_domains/<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}/detected_domains" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @detected_domain.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/detected_domains/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"