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": "d949c81c-ffed-4048-a4f5-2b76f5fd8449",
  "applicationId": "247f7a7b-5091-43ec-9896-6b694d1ba65d",
  "isLicensed": true,
  "createdDateUtc": "2026-07-21T07:43:48.3630867+00:00",
  "updatedDateUtc": "2026-07-21T07:43:48.3630867+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-07-21T07:43:48.3630867+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-07-21T07:43:48.3630867+00:00</UpdatedDateUtc>
  <ApplicationId>247f7a7b-5091-43ec-9896-6b694d1ba65d</ApplicationId>
  <DeviceId>d949c81c-ffed-4048-a4f5-2b76f5fd8449</DeviceId>
  <IsLicensed>true</IsLicensed>
</DeviceApplicationRepresentation>