Skip to content

API Credential

API Credential provides tools for creating, listing, and retrieving resources in F5 Distributed Cloud.

ToolDescription
f5xc-api-authentication-api-credential-createBulk Revoke API credentials.
f5xc-api-authentication-api-credential-getGet API Credentials.
f5xc-api-authentication-api-credential-listList API Credentials.
ParameterDescriptionExample
nameCredential name…example-resource
namespaceNamespace…system

Ask Claude to help you work with API Credential resources:

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

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

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

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/web/namespaces/$${PARAM}/api_credentials" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"
# Get specific resource
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/web/namespaces/$${PARAM}/api_credentials/$${PARAM}" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"
# Create resource
curl -X POST "https://${TENANT}.console.ves.volterra.io/api/web/namespaces/system/bulk_revoke/api_credentials" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @api_credential.json