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": "3d5dbee2-338b-403e-8e79-8481b9143210",
  "applicationId": "2d8d925c-d60a-49f5-b4f4-2cf7ac6bebaf",
  "isLicensed": true,
  "createdDateUtc": "2025-09-13T07:26:32.7578812+00:00",
  "updatedDateUtc": "2025-09-13T07:26:32.7578812+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-09-13T07:26:32.7578812+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2025-09-13T07:26:32.7578812+00:00</UpdatedDateUtc>
  <ApplicationId>2d8d925c-d60a-49f5-b4f4-2cf7ac6bebaf</ApplicationId>
  <DeviceId>3d5dbee2-338b-403e-8e79-8481b9143210</DeviceId>
  <IsLicensed>true</IsLicensed>
</DeviceApplicationRepresentation>