Skip to content

Group

List groups based on the given filter.

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-updateReplace group based on ID.
f5xc-api-tenantandidentity-group-deleteDELETE group based on ID.
f5xc-api-tenantandidentity-group-patchPATCH group based on ID.
ParameterDescriptionExample
idID-
ParameterDescriptionExample
excludedAttributesMembers”]“-
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/config/namespaces/${NAMESPACE}/Groups" \
-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}/Groups/<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}/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/config/namespaces/${NAMESPACE}/Groups/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"