- Home
- API MCP Server
- tools
- tenant-and-identity
- other
- Managed Tenants List
Managed Tenants List
GET full list of managed tenants access details. This response will contain full list of managed tenant based on the configuration and is not filtered by requesting user’s group membership that enable access.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-managed-tenants-list-list | GET List of Managed Tenant. |
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
page_limit | PageLimit will hold the limit of items required per query. | - |
page_start | PageStart will hold the UUID of the first item in the requested page. | - |
search_keyword | Search Keyword for filtering the Managed Tenant List. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Managed Tenants List resources:
List Managed Tenants Lists
Section titled “List Managed Tenants Lists”“List all managed-tenants-lists in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/managed_tenants_lists" \ -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}/managed_tenants_lists/<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}/managed_tenants_lists" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @managed_tenants_list.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/managed_tenants_lists/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"