Retrieves the licence group right with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The licence group right id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the licence group right, or 404 Not Found if it doesn't exist.
licence_group_user_right_list| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| licence_group_id |
Foreign key of the licence group this right is granted under. |
globally unique identifier | |
| user_right_id |
Foreign key of the granted user right. |
globally unique identifier | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "230c80f7-70c8-41d9-8e26-f76c72d24de2",
"licence_group_id": "8f4a2a05-6bea-46b7-bb97-1b6c55199a48",
"user_right_id": "3cd16fca-6bd2-4b2a-95d7-ab98bbd9a2c7",
"modified_dateutc": "2026-09-16T11:06:26.6053959+00:00"
}
application/xml, text/xml
Sample:
<licence_group_user_right_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>230c80f7-70c8-41d9-8e26-f76c72d24de2</id> <licence_group_id>8f4a2a05-6bea-46b7-bb97-1b6c55199a48</licence_group_id> <modified_dateutc>2026-09-16T11:06:26.605Z</modified_dateutc> <user_right_id>3cd16fca-6bd2-4b2a-95d7-ab98bbd9a2c7</user_right_id> </licence_group_user_right_list>