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": "31f13bfd-72bc-4b9c-a2f6-b5e8dda5608c",
  "applicationId": "4ab5ca05-58b5-4fa3-b3b1-81d42552bec0",
  "isLicensed": true,
  "createdDateUtc": "2026-05-15T16:41:07.67028+00:00",
  "updatedDateUtc": "2026-05-15T16:41:07.67028+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-05-15T16:41:07.67028+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2026-05-15T16:41:07.67028+00:00</UpdatedDateUtc>
  <ApplicationId>4ab5ca05-58b5-4fa3-b3b1-81d42552bec0</ApplicationId>
  <DeviceId>31f13bfd-72bc-4b9c-a2f6-b5e8dda5608c</DeviceId>
  <IsLicensed>true</IsLicensed>
</DeviceApplicationRepresentation>