Retrieves the user group with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The user group id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the user group, or 404 Not Found if it doesn't exist.

user_group
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
sales_organization_id

Foreign key of the sales organization this user group belongs to.

globally unique identifier
licence_group_id

Foreign key of the licence group this user group is scoped to.

globally unique identifier
name

Name of this user group.

string
archived

Indicates whether this user group has been archived (no longer assignable).

boolean
allow_service_app

allowed using 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": "bedb9b22-834b-470c-9e9d-4924f699861f",
  "sales_organization_id": "ddabc312-f516-41b0-940d-96920d4dd584",
  "licence_group_id": "ff066044-aac2-484b-9401-f279037fe599",
  "name": "sample string 4",
  "archived": true,
  "allow_service_app": true,
  "modified_dateutc": "2026-09-17T12:10:49.4258413+00:00"
}

application/xml, text/xml

Sample:
<user_group xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <allow_service_app>true</allow_service_app>
  <archived>true</archived>
  <id>bedb9b22-834b-470c-9e9d-4924f699861f</id>
  <licence_group_id>ff066044-aac2-484b-9401-f279037fe599</licence_group_id>
  <modified_dateutc>2026-09-17T12:10:49.425Z</modified_dateutc>
  <name>sample string 4</name>
  <sales_organization_id>ddabc312-f516-41b0-940d-96920d4dd584</sales_organization_id>
</user_group>