- Home
- API MCP Server
- tools
- observability
- observability
- TLS Report Detail
TLS Report Detail
Returns the HTML encoding of the generated TLS report.
| Tool | Description |
|---|---|
f5xc-api-observability-tls-report-detail-list | GET TLS Report Detail. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
monitor_name | Monitor_name. X-required | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with TLS Report Detail resources:
List TLS Report Details
Section titled “List TLS Report Details”“List all tls-report-details in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/tls_report_details" \ -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}/tls_report_details/<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}/tls_report_details" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @tls_report_detail.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/tls_report_details/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"