Skip to content

Evaluate Batch API Acces

Medium Risk

Some operations on this resource may modify or delete data.

EvaluateBatchAPIAccess can evaluate multiple lists of API URL, method under a batch of namespaces for a given user of a tenant.

Tools

Tool Description
f5xc-api-tenantandidentity-evaluate-batch-api-acces-create Evaluate Batch API Access.

Side Effects

Operations on this resource may have the following effects:

Creates:

  • evaluate-batch-api-acces

Example Usage

Ask Claude to help you work with Evaluate Batch API Acces resources:

Create Evaluate Batch API Acces

"Create a evaluate-batch-api-acces named 'example' in the 'production' namespace"

CURL Examples

# List resources
curl -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 resource
curl -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 resource
curl -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 resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/evaluate_batch_api_access/<name>" \
  -H "Authorization: APIToken ${F5XC_API_TOKEN}"