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": "9150456e-2d83-4010-8a26-fd9ad9ba603b",
  "applicationId": "cbd5f24f-4104-45dd-9b60-a85fce0c0264",
  "isLicensed": true,
  "createdDateUtc": "2025-11-19T05:18:12.2835363+00:00",
  "updatedDateUtc": "2025-11-19T05:18:12.2835363+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-11-19T05:18:12.2835363+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2025-11-19T05:18:12.2835363+00:00</UpdatedDateUtc>
  <ApplicationId>cbd5f24f-4104-45dd-9b60-a85fce0c0264</ApplicationId>
  <DeviceId>9150456e-2d83-4010-8a26-fd9ad9ba603b</DeviceId>
  <IsLicensed>true</IsLicensed>
</DeviceApplicationRepresentation>