User - Fetch list of all users
Authorizations
Query parameters
pageNumberinteger · int32Optional
Expects number for the page, default is 1
pageSizeinteger · int32Optional
Expects size of the page, default is 100
tenantIdstring · uuidOptional
Expects an optional Id of an existing tenant
roleIdstring · uuidOptional
Expects an optional Id of an existing role
assetIdstring · uuidOptional
Expects an optional Id of an existing asset of a tenant
includestring · enumOptionalPossible values:
Enum for include props.
orderBystring · enumOptionalPossible values:
Enum for order by props.
orderstring · enumOptionalPossible values:
Enum for order props.
versionstringOptionalDefault:
The requested API version
1.0
Responses
200
Successful retrieval of users
401
Un-authorized request
500
Server related error
get
GET /users HTTP/1.1
Host:
Authorization: Bearer JWT
Accept: */*
[
{
"userId": "123e4567-e89b-12d3-a456-426614174000",
"tenants": [
{
"tenantId": "123e4567-e89b-12d3-a456-426614174000",
"tenantName": "text",
"isOwner": true,
"tenantLevelRole": "text",
"assets": [
{
"assetId": "123e4567-e89b-12d3-a456-426614174000",
"assetName": "text",
"assetType": "text",
"rlsRole": [
"text"
],
"roleId": "123e4567-e89b-12d3-a456-426614174000",
"roleName": "text",
"canCreate": true,
"canEdit": true,
"canExport": true,
"canView": true
}
]
}
]
}
]
Last updated