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": "130f9ce6-e4b9-474e-a912-90e49eeb31c3",
  "applicationId": "8b5d2a56-412b-4f22-9cc2-d8cfcde60fcf",
  "isLicensed": true,
  "createdDateUtc": "2026-03-10T05:15:32.1831387+00:00",
  "updatedDateUtc": "2026-03-10T05:15:32.1831387+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>2026-03-10T05:15:32.1831387+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-03-10T05:15:32.1831387+00:00</UpdatedDateUtc>
  <ApplicationId>8b5d2a56-412b-4f22-9cc2-d8cfcde60fcf</ApplicationId>
  <DeviceId>130f9ce6-e4b9-474e-a912-90e49eeb31c3</DeviceId>
  <IsLicensed>true</IsLicensed>
</DeviceApplicationRepresentation>