Get Access for User (v2.0)
GET/v2.0/api/tenants/:tenant_id/elementusers/:user_id/access
List all accesses for a particular user.
Request
Path Parameters
tenant_id stringrequired
The tenant ID.
user_id stringrequired
The element user ID.
Responses
- 200
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
count int32
The actual count.
id string
The ID.
tenant_id string
The tenant ID.
items ElementUserAccess[]
element_id stringrequired
The element ID.
id string
The ID.
role stringrequired
Possible values: [SUPER
, READONLY
, MONITOR
, EVAL
]
The user role.
tenant_id stringrequired
ID of the tenant.
user_id string
The element user ID.
{
"count": 0,
"id": "string",
"tenant_id": "string",
"items": [
{
"element_id": "string",
"id": "string",
"role": "SUPER",
"tenant_id": "string",
"user_id": "string"
}
]
}
Loading...