- Home
- API MCP Server
- tools
- tenant-and-identity
- other
- User Role
User Role
Create creates a user and namespace roles binding for this user.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-user-role-create | Create User with Role Assignment. |
f5xc-api-tenantandidentity-user-role-list | GET User and Role Assignments. |
f5xc-api-tenantandidentity-user-role-update | Update User and Role Assignments. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with User Role resources:
Create User Role
Section titled “Create User Role”“Create a user-role named ‘example’ in the ‘production’ namespace”
List User Roles
Section titled “List User Roles”“List all user-roles in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/user_roles" \ -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}/user_roles/<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}/user_roles" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @user_role.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/user_roles/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"