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": "05712bac-9347-470d-89d6-95d236b98727",
  "applicationId": "fbe4747a-c2cf-4e60-ad02-c7d3897a52f0",
  "isLicensed": true,
  "createdDateUtc": "2026-06-22T23:00:02.2598932+00:00",
  "updatedDateUtc": "2026-06-22T23:00:02.2598932+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-06-22T23:00:02.2598932+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-06-22T23:00:02.2598932+00:00</UpdatedDateUtc>
  <ApplicationId>fbe4747a-c2cf-4e60-ad02-c7d3897a52f0</ApplicationId>
  <DeviceId>05712bac-9347-470d-89d6-95d236b98727</DeviceId>
  <IsLicensed>true</IsLicensed>
</DeviceApplicationRepresentation>