Skip to content

Group

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

ToolDescription
f5xc-api-tenantandidentity-group-createCreate group with users.
f5xc-api-tenantandidentity-group-getList group based on ID.
f5xc-api-tenantandidentity-group-listList group based on filters.
f5xc-api-tenantandidentity-group-updateUpdate group based on ID.
f5xc-api-tenantandidentity-group-deleteDelete group based on ID.
f5xc-api-tenantandidentity-group-patchPATCH group based on ID.
ParameterDescriptionExample
idID x-required…-
ParameterDescriptionExample
excludedAttributesMembers”]” A multi-valued list of strings indicating the names of resource attributes…-
countThe number of entries after filter.-
filterFilter to be used for filtering objects.-
pageStart offset.-

Ask Claude to help you work with Group resources:

“Create a Group named ‘example’ in the ‘production’ namespace”

“List all Groups in the ‘production’ namespace”

“Get details of the Group named ‘example’ in namespace ‘production‘“

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