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": "458df57d-c759-4170-a3f1-68a3bea1dcfc",
  "applicationId": "11e86f24-0b9a-479b-b3e4-34407f353522",
  "isLicensed": true,
  "createdDateUtc": "2026-02-01T08:28:42.5432264+00:00",
  "updatedDateUtc": "2026-02-01T08:28:42.5432264+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-01T08:28:42.5432264+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-02-01T08:28:42.5432264+00:00</UpdatedDateUtc>
  <ApplicationId>11e86f24-0b9a-479b-b3e4-34407f353522</ApplicationId>
  <DeviceId>458df57d-c759-4170-a3f1-68a3bea1dcfc</DeviceId>
  <IsLicensed>true</IsLicensed>
</DeviceApplicationRepresentation>