Skip to content

User Group

User Group provides tools for creating, listing, retrieving, updating, and deleting resources in F5 Distributed Cloud.

ToolDescription
f5xc-api-tenantandidentity-user-group-createCreate User Group.
f5xc-api-tenantandidentity-user-group-getFetch all the details for a group provided the group ID.
f5xc-api-tenantandidentity-user-group-listGet all User Groups for the tenant.
f5xc-api-tenantandidentity-user-group-updateUpdate the User Group fields / accesses / associations.
f5xc-api-tenantandidentity-user-group-deleteDelete a group provided the group ID.
ParameterDescriptionExample
nameName of the user group name of the specific group.example-resource
ParameterDescriptionExample
attempt_remove_referencesThe attempt_remove_references parameter…-

Ask Claude to help you work with User Group resources:

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

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

“Get details of the user-group named ‘example’ in namespace ‘production‘“

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