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": "ebc76153-9bcf-4293-aca2-629960c5d6d2",
  "applicationId": "5a073d3d-09d9-484e-857e-b5a77d9ccbe7",
  "isLicensed": true,
  "createdDateUtc": "2026-09-11T11:01:58.9124721+00:00",
  "updatedDateUtc": "2026-09-11T11:01:58.9124721+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-09-11T11:01:58.9124721+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-09-11T11:01:58.9124721+00:00</UpdatedDateUtc>
  <ApplicationId>5a073d3d-09d9-484e-857e-b5a77d9ccbe7</ApplicationId>
  <DeviceId>ebc76153-9bcf-4293-aca2-629960c5d6d2</DeviceId>
  <IsLicensed>true</IsLicensed>
</DeviceApplicationRepresentation>