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": "d8a63a83-2877-4f42-8554-c959d413a58b",
  "applicationId": "fcd03684-7636-40b4-aa84-f875e0a9da7c",
  "isLicensed": true,
  "createdDateUtc": "2026-08-02T07:25:04.5072431+00:00",
  "updatedDateUtc": "2026-08-02T07:25:04.5072431+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-08-02T07:25:04.5072431+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-08-02T07:25:04.5072431+00:00</UpdatedDateUtc>
  <ApplicationId>fcd03684-7636-40b4-aa84-f875e0a9da7c</ApplicationId>
  <DeviceId>d8a63a83-2877-4f42-8554-c959d413a58b</DeviceId>
  <IsLicensed>true</IsLicensed>
</DeviceApplicationRepresentation>