Skip to content

Find

Retrieve any saved filter sets that are applicable for the given context key(s)

ToolDescription
f5xc-api-networksecurity-find-createFind Filter Sets for 1 or More Context Keys.
ParameterDescriptionExample
namespaceNamespace-

Ask Claude to help you work with Find resources:

“Create a find named ‘example’ in the ‘production’ namespace”

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/finds" \
-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}/finds/<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}/finds" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @find.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/finds/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"