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": "d42f67d5-1c50-4dc9-843a-453de3380c79",
  "applicationId": "4bbe9686-7540-43d2-8830-f35f31589688",
  "isLicensed": true,
  "createdDateUtc": "2025-11-13T19:21:13.97704+00:00",
  "updatedDateUtc": "2025-11-13T19:21:13.97704+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>2025-11-13T19:21:13.97704+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2025-11-13T19:21:13.97704+00:00</UpdatedDateUtc>
  <ApplicationId>4bbe9686-7540-43d2-8830-f35f31589688</ApplicationId>
  <DeviceId>d42f67d5-1c50-4dc9-843a-453de3380c79</DeviceId>
  <IsLicensed>true</IsLicensed>
</DeviceApplicationRepresentation>