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": "9f344a2e-24f3-446a-9e60-24b4a6d6ac86",
  "applicationId": "bd105b94-4be3-460c-98bc-e73c6f717b87",
  "isLicensed": true,
  "createdDateUtc": "2026-03-31T14:51:41.6201135+00:00",
  "updatedDateUtc": "2026-03-31T14:51:41.6201135+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-03-31T14:51:41.6201135+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-03-31T14:51:41.6201135+00:00</UpdatedDateUtc>
  <ApplicationId>bd105b94-4be3-460c-98bc-e73c6f717b87</ApplicationId>
  <DeviceId>9f344a2e-24f3-446a-9e60-24b4a6d6ac86</DeviceId>
  <IsLicensed>true</IsLicensed>
</DeviceApplicationRepresentation>