Retrieves all user rights, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of user rights.

user_right_list
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
code

Short code identifying this right.

string
name

Display name of this right.

string
description

Free-text description of what this right grants.

string
user_right_category_name

Name of the category this right is grouped under, for display purposes.

string
is_deny

Indicates this entry explicitly denies the right rather than granting it.

boolean
inherit_from_user_group

Indicates this right's value is inherited from the user's user_group rather than set directly on the user.

boolean
user_right_list_id

Foreign key of the underlying right definition this entry applies (see ).

globally unique identifier
user_group_right_list_id

Foreign key of the group-level right entry (see ) this right derives from.

globally unique identifier
is_enabled

Indicates whether this right is currently enabled/granted.

boolean
is_service_app

Indicates this right applies to the service app.

boolean
is_timesheet_app

Indicates this right applies to the timesheet app.

boolean
is_subcontractor_app

Indicates this right applies to the subcontractor app.

boolean
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "60af9bea-1d0d-46ce-ae15-4403c9d7dc6a",
  "code": "sample string 2",
  "name": "sample string 3",
  "description": "sample string 4",
  "user_right_category_name": "sample string 5",
  "is_deny": true,
  "inherit_from_user_group": true,
  "user_right_list_id": "0b9528fa-fde9-4eb3-bf42-04d84064e89e",
  "user_group_right_list_id": "94230869-78fb-45b0-9975-183af8b5b970",
  "is_enabled": true,
  "is_service_app": true,
  "is_timesheet_app": true,
  "is_subcontractor_app": true,
  "modified_dateutc": "2026-09-16T10:12:40.9259512+00:00"
}

application/xml, text/xml

Sample:
<user_right_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <code>sample string 2</code>
  <description>sample string 4</description>
  <id>60af9bea-1d0d-46ce-ae15-4403c9d7dc6a</id>
  <inherit_from_user_group>true</inherit_from_user_group>
  <is_deny>true</is_deny>
  <is_enabled>true</is_enabled>
  <is_service_app>true</is_service_app>
  <is_subcontractor_app>true</is_subcontractor_app>
  <is_timesheet_app>true</is_timesheet_app>
  <modified_dateutc>2026-09-16T10:12:40.925Z</modified_dateutc>
  <name>sample string 3</name>
  <user_group_right_list_id>94230869-78fb-45b0-9975-183af8b5b970</user_group_right_list_id>
  <user_right_category_name>sample string 5</user_right_category_name>
  <user_right_list_id>0b9528fa-fde9-4eb3-bf42-04d84064e89e</user_right_list_id>
</user_right_list>