Retrieves the user_group with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

user_group
NameDescriptionTypeAdditional information
id

globally unique identifier
sales_organization_id

globally unique identifier
licence_group_id

globally unique identifier
name

string
archived

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": "cf8ce35b-08c9-4150-8536-b9aaff28c026",
  "sales_organization_id": "b8855901-669b-4aea-add8-6aed2634d819",
  "licence_group_id": "65725c78-75d6-4d58-89cd-ab5176a026ca",
  "name": "sample string 4",
  "archived": true,
  "allow_service_app": true,
  "modified_dateutc": "2026-06-16T22:31:00.2071215+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>cf8ce35b-08c9-4150-8536-b9aaff28c026</id>
  <licence_group_id>65725c78-75d6-4d58-89cd-ab5176a026ca</licence_group_id>
  <modified_dateutc>2026-06-16T22:31:00.207Z</modified_dateutc>
  <name>sample string 4</name>
  <sales_organization_id>b8855901-669b-4aea-add8-6aed2634d819</sales_organization_id>
</user_group>