- Home
- API MCP Server
- tools
- tenant-and-identity
- other
- Lookup User Role
Lookup User Role
LookupUserRoles returns roles for the the given user, namespace.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-lookup-user-role-create | Lookup User Roles. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Lookup User Role resources:
Create Lookup User Role
Section titled “Create Lookup User Role”“Create a lookup-user-role named ‘example’ in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/lookup_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}/lookup_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}/lookup_user_roles" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @lookup_user_role.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/lookup_user_roles/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"