Skip to content

User Role

Create creates a user and namespace roles binding for this user.

ToolDescription
f5xc-api-tenantandidentity-user-role-createCreate User with Role Assignment.
f5xc-api-tenantandidentity-user-role-listGET User and Role Assignments.
f5xc-api-tenantandidentity-user-role-updateUpdate User and Role Assignments.
ParameterDescriptionExample
namespaceNamespace-

Ask Claude to help you work with User Role resources:

“Create a user-role named ‘example’ in the ‘production’ namespace”

“List all user-roles in the ‘production’ namespace”

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