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": "2d1e1823-abdc-467d-9a89-a09f4f94af1f",
  "applicationId": "fe835ff2-b935-4e3b-a2d5-8359cdfb325b",
  "isLicensed": true,
  "createdDateUtc": "2026-02-07T07:09:29.6721799+00:00",
  "updatedDateUtc": "2026-02-07T07:09:29.6721799+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-02-07T07:09:29.6721799+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-02-07T07:09:29.6721799+00:00</UpdatedDateUtc>
  <ApplicationId>fe835ff2-b935-4e3b-a2d5-8359cdfb325b</ApplicationId>
  <DeviceId>2d1e1823-abdc-467d-9a89-a09f4f94af1f</DeviceId>
  <IsLicensed>true</IsLicensed>
</DeviceApplicationRepresentation>