Skip to content

Image

Uploads new profile image for the tenant entity.

ToolDescription
f5xc-api-tenantandidentity-image-listTenant profile image.
f5xc-api-tenantandidentity-image-updateUpdate tenant profile image.
f5xc-api-tenantandidentity-image-deleteDELETE tenant profile image.

Ask Claude to help you work with Image resources:

“List all images in the ‘production’ namespace”

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