- Home
- API MCP Server
- tools
- tenant-and-identity
- other
- Evaluate Batch API Acces
Evaluate Batch API Acces
EvaluateBatchAPIAccess can evaluate multiple lists of API URL, method under a batch of namespaces for a given user of a tenant.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-evaluate-batch-api-acces-create | Evaluate Batch API Access. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Evaluate Batch API Acces resources:
Create Evaluate Batch API Acces
Section titled “Create Evaluate Batch API Acces”“Create a evaluate-batch-api-acces named ‘example’ in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/evaluate_batch_api_access" \ -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}/evaluate_batch_api_access/<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}/evaluate_batch_api_access" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @evaluate_batch_api_acces.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/evaluate_batch_api_access/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"