Cyan Web API - Version 1


GET api/userGroups/{userGroupId}

            Gets a UserGroup.
            

Request Information

Parameters

NameDescriptionAdditional information
userGroupId

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "userGroupId": "a6b419a3-3d66-4a65-97dc-35047c1f5cc1",
  "tenantId": "d6a31695-4f9b-4ebc-840b-bc91a4d6e052",
  "lookupKey": "sample string 3",
  "name": "sample string 4",
  "description": "sample string 5",
  "isDefault": true,
  "createdDateUtc": "2025-11-15T11:40:28.6334114+00:00",
  "updatedDateUtc": "2025-11-15T11:40:28.6334114+00:00"
}

application/xml, text/xml

Sample:
<UserGroupRepresentation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlueDot.Cyan.Server.Core.Models.Rest.Version1">
  <CreatedDateUtc>2025-11-15T11:40:28.6334114+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2025-11-15T11:40:28.6334114+00:00</UpdatedDateUtc>
  <Description>sample string 5</Description>
  <IsDefault>true</IsDefault>
  <LookupKey>sample string 3</LookupKey>
  <Name>sample string 4</Name>
  <TenantId>d6a31695-4f9b-4ebc-840b-bc91a4d6e052</TenantId>
  <UserGroupId>a6b419a3-3d66-4a65-97dc-35047c1f5cc1</UserGroupId>
</UserGroupRepresentation>