- Home
- API MCP Server
- tools
- tenant-and-identity
- identity
- User
User
Create creates a user and namespace roles binding for this user.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-user-create | Create User with Role Assignment. |
f5xc-api-tenantandidentity-user-get | GET User with ID. |
f5xc-api-tenantandidentity-user-list | GET all users. |
f5xc-api-tenantandidentity-user-update | Update User and Role Assignments. |
f5xc-api-tenantandidentity-user-delete | DELETE user by ID. |
f5xc-api-tenantandidentity-user-patch | PATCH User. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
id | ID | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
excludedAttributes | Members”]“ | - |
count | The number of entries after filter. | - |
filter | Filter to be used for filtering objects. | - |
page | Start offset. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with User resources:
Create User
Section titled “Create User”“Create a User named ‘example’ in the ‘production’ namespace”
List Users
Section titled “List Users”“List all Users in the ‘production’ namespace”
Get User Details
Section titled “Get User Details”“Get details of the User named ‘example’ in namespace ‘production‘“
CURL Examples
Section titled “CURL Examples”# List resourcescurl -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 resourcecurl -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 resourcecurl -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 resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/Users/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"