- Home
- API MCP Server
- tools
- shape
- shape-security
- Detected Domain
Detected Domain
GET the detected domains data for the tenant.
| Tool | Description |
|---|---|
f5xc-api-shape-detected-domain-list | GET Detected Domains. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
duration | Length in Days to fetch domain. | - |
locations | List of locations if backend needs to filter with locations passed. | - |
risk | GET the list of high risk domains, all domains is by default. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Detected Domain resources:
List Detected Domains
Section titled “List Detected Domains”“List all detected-domains in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -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 resourcecurl -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 resourcecurl -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 resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/detected_domains/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"