Cyan Web API - Version 1


GET api/deviceApplications?{deviceId}&{applicationId}

            Gets a DeviceApplication.
            

Request Information

Parameters

NameDescriptionAdditional information
deviceId

Define this parameter in the request URI.

applicationId

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "deviceId": "3168e847-697c-4abe-9d49-55afc78e0ab2",
  "applicationId": "51910b3a-d8d6-45fe-87c4-ab57edb67c24",
  "isLicensed": true,
  "createdDateUtc": "2025-12-14T20:51:31.9306303+00:00",
  "updatedDateUtc": "2025-12-14T20:51:31.9306303+00:00"
}

application/xml, text/xml

Sample:
<DeviceApplicationRepresentation 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-12-14T20:51:31.9306303+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2025-12-14T20:51:31.9306303+00:00</UpdatedDateUtc>
  <ApplicationId>51910b3a-d8d6-45fe-87c4-ab57edb67c24</ApplicationId>
  <DeviceId>3168e847-697c-4abe-9d49-55afc78e0ab2</DeviceId>
  <IsLicensed>true</IsLicensed>
</DeviceApplicationRepresentation>