Cyan Web API - Version 1


PUT api/deviceApplications?{deviceId}&{applicationId}

            Updates a DeviceApplication.
            

Request Information

Parameters

NameDescriptionAdditional information
deviceId

Define this parameter in the request URI.

applicationId

Define this parameter in the request URI.

deviceApplicationRepresentation

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "deviceId": "e4a4dba8-d28c-4afe-b5c8-8bd64e183fd0",
  "applicationId": "a9f02385-c918-4a49-aa9b-ff8c64fb4541",
  "isLicensed": true,
  "createdDateUtc": "2025-04-17T17:20:03.8838501+00:00",
  "updatedDateUtc": "2025-04-17T17:20:03.8838501+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-04-17T17:20:03.8838501+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2025-04-17T17:20:03.8838501+00:00</UpdatedDateUtc>
  <ApplicationId>a9f02385-c918-4a49-aa9b-ff8c64fb4541</ApplicationId>
  <DeviceId>e4a4dba8-d28c-4afe-b5c8-8bd64e183fd0</DeviceId>
  <IsLicensed>true</IsLicensed>
</DeviceApplicationRepresentation>

application/x-www-form-urlencoded

Sample:

Sample not available.