Skip to content

User

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

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 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 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/scim/namespaces/system/v2/Users" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"
# Get specific resource
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/scim/namespaces/system/v2/Users/${PARAM}" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"
# Create resource
curl -X POST "https://${TENANT}.console.ves.volterra.io/api/scim/namespaces/system/v2/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/scim/namespaces/system/v2/Users/${PARAM}" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"