- Home
- API MCP Server
- tools
- tenant-and-identity
- tenant-management
- Tenant Escalation Doc
Tenant Escalation Doc
Receive current tenant escalation document.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-tenant-escalation-doc-list | Tenant escalation document. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Tenant Escalation Doc resources:
List Tenant Escalation Docs
Section titled “List Tenant Escalation Docs”“List all tenant-escalation-docs in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/tenant_escalation_docs" \ -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}/tenant_escalation_docs/<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}/tenant_escalation_docs" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @tenant_escalation_doc.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/tenant_escalation_docs/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"