Cyan Web API - Version 1


GET api/deviceGroups/{deviceGroupId}

            Gets a DeviceGroup.
            

Request Information

Parameters

NameDescriptionAdditional information
deviceGroupId

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "deviceGroupId": "0158d4d9-5747-41b7-adb6-54dc06c7f2a0",
  "tenantId": "9b7565d6-8148-485c-9cea-502d90bb7b4f",
  "lookupKey": "sample string 3",
  "name": "sample string 4",
  "description": "sample string 5",
  "isDefault": true,
  "createdDateUtc": "2024-08-30T01:15:53.8530074+00:00",
  "updatedDateUtc": "2024-08-30T01:15:53.8530074+00:00"
}

application/xml, text/xml

Sample:
<DeviceGroupRepresentation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlueDot.Cyan.Server.Core.Models.Rest.Version1">
  <CreatedDateUtc>2024-08-30T01:15:53.8530074+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2024-08-30T01:15:53.8530074+00:00</UpdatedDateUtc>
  <Description>sample string 5</Description>
  <DeviceGroupId>0158d4d9-5747-41b7-adb6-54dc06c7f2a0</DeviceGroupId>
  <IsDefault>true</IsDefault>
  <LookupKey>sample string 3</LookupKey>
  <Name>sample string 4</Name>
  <TenantId>9b7565d6-8148-485c-9cea-502d90bb7b4f</TenantId>
</DeviceGroupRepresentation>