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": "c5e8658f-4f1b-4357-8c20-f713576a81c5",
  "applicationId": "f416efdd-eed7-453e-b171-80ed2ac88157",
  "isLicensed": true,
  "createdDateUtc": "2024-08-29T23:46:46.2380713+00:00",
  "updatedDateUtc": "2024-08-29T23:46:46.2380713+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>2024-08-29T23:46:46.2380713+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2024-08-29T23:46:46.2380713+00:00</UpdatedDateUtc>
  <ApplicationId>f416efdd-eed7-453e-b171-80ed2ac88157</ApplicationId>
  <DeviceId>c5e8658f-4f1b-4357-8c20-f713576a81c5</DeviceId>
  <IsLicensed>true</IsLicensed>
</DeviceApplicationRepresentation>