Skip to content

User

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

ToolDescription
f5xc-api-tenantandidentity-user-createCreate User with Role Assignment.
f5xc-api-tenantandidentity-user-getGET User with ID.
f5xc-api-tenantandidentity-user-listGET all users.
f5xc-api-tenantandidentity-user-updateUpdate User and Role Assignments.
f5xc-api-tenantandidentity-user-deleteDELETE user by ID.
f5xc-api-tenantandidentity-user-patchPATCH User.
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 User resources:

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

“List all Users in the ‘production’ namespace”

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

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