Retrieves all user_group

Request Information

URI Parameters :

None.

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": "da421f8e-6f93-4dde-a3eb-8708818189bd",
  "sales_organization_id": "611e5020-3bb9-4a27-8c5e-4886cfa99cc4",
  "licence_group_id": "3835f672-6368-4b47-9e9d-c64e4d9949e1",
  "name": "sample string 4",
  "archived": true,
  "allow_service_app": true,
  "modified_dateutc": "2026-03-07T14:48:26.1902456+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>da421f8e-6f93-4dde-a3eb-8708818189bd</id>
  <licence_group_id>3835f672-6368-4b47-9e9d-c64e4d9949e1</licence_group_id>
  <modified_dateutc>2026-03-07T14:48:26.190Z</modified_dateutc>
  <name>sample string 4</name>
  <sales_organization_id>611e5020-3bb9-4a27-8c5e-4886cfa99cc4</sales_organization_id>
</user_group>