Skip to content

API Testing

List the set of api_testing in a namespace.

ToolDescription
f5xc-api-api-api-testing-createCreate API Testing.
f5xc-api-api-api-testing-getGET API testing.
f5xc-api-api-api-testing-listList API Testing.
f5xc-api-api-api-testing-updateReplace API testing.
f5xc-api-api-api-testing-deleteDELETE API Testing.
ParameterDescriptionExample
metadata.namespaceNamespace-
nameName-
namespaceNamespace-
metadata.nameName-
ParameterDescriptionExample
response_formatThe format in which the configuration object is to be fetched. This could be for example-
label_filterA LabelSelectorType expression that every item in list response will satisfy.-
report_fieldsThe report_fields parameter-
report_status_fieldsThe report_status_fields parameter-

This resource includes mutually exclusive configuration options:

OptionDescriptionRecommended
spec.every_day-
spec.every_month-
spec.every_week-
OptionDescriptionRecommended
spec.domains[].credentials[].api_key-
spec.domains[].credentials[].basic_auth-
spec.domains[].credentials[].bearer_token-
spec.domains[].credentials[].login_endpoint-
OptionDescriptionRecommended
spec.domains[].credentials[].admin-
spec.domains[].credentials[].standard-
OptionDescriptionRecommended
spec.domains[].credentials[].api_key.value.blindfold_secret_info-
spec.domains[].credentials[].api_key.value.clear_secret_info-

Ask Claude to help you work with API Testing resources:

“Create a api-testing named ‘example’ in the ‘production’ namespace”

“List all api-testings in the ‘production’ namespace”

“Get details of the api-testing named ‘example’ in namespace ‘production‘“

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