Disabled. Fetching a single user right by key is not supported through this endpoint; use the list endpoint with an OData filter instead.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The key (ignored).

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

403 Forbidden.

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": "64cd80a5-fdcb-4437-8886-ebc64de1e5f3",
  "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": "bd5dabff-9849-44c4-a0ae-6ca54be53683",
  "user_group_right_list_id": "41f2df1f-973c-47d7-b78f-11920d11555a",
  "is_enabled": true,
  "is_service_app": true,
  "is_timesheet_app": true,
  "is_subcontractor_app": true,
  "modified_dateutc": "2026-09-16T10:15:06.4797345+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>64cd80a5-fdcb-4437-8886-ebc64de1e5f3</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:15:06.479Z</modified_dateutc>
  <name>sample string 3</name>
  <user_group_right_list_id>41f2df1f-973c-47d7-b78f-11920d11555a</user_group_right_list_id>
  <user_right_category_name>sample string 5</user_right_category_name>
  <user_right_list_id>bd5dabff-9849-44c4-a0ae-6ca54be53683</user_right_list_id>
</user_right_list>