Description: Retrieve device properties
URL: http://{your-server-url}/api/v1/core/devices/{deviceId}/properties
Method: GET
Token Required: True
content-type: application/json or content-type: application/xml
token: {token}
currentaccountid: {accountid - optional and default value is user's own account}
Portal Administrator, Account Administrator, Account Owner, Network Administrator
Type: Nexus.AppSpace.Service.Contract.Model.Enums.Rights.Rights
Right | Require |
---|---|
Network_Management | Yes |
Parameter | Type | Nullable | Description |
---|---|---|---|
propids | int[] | True | comma separated values, eg. propertyids=1,2,3 |
propname | string | True | |
propvalue | string | True | |
page | int | True | page number |
rpp | int | True | records per page, default = 50, max = 500 |
Example: http://{your-server-url}/api/v1/core/devices/{deviceId}/properties?propids=1,2,3&propname=string&propvalue=string
Type: Nexus.AppSpace.Service.Contract.Messages.AppSpaceIntegration.v1.Device.DeviceResponse
Parameter | Type |
---|---|
Response.DeviceProperties | Nexus.AppSpace.Service.Contract.Model.DTO.AppSpaceIntegration.V1.Properties.Property[] |
Field | Name | Values |
---|---|---|
ResourceType | Nexus.AppSpace.Service.Contract.Model.Enums.Property.ResourceType | System = 0, Network = 1, Application = 2, Player = 3 |
<DeviceResponse xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages.AppSpaceIntegration.v1.Device" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <DebugMessage xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages">String</DebugMessage> <Errors xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages"> <Error> <Code>String</Code> <Message>String</Message> <StackTrace>String</StackTrace> </Error> </Errors> <Status xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages">Success</Status> <DeviceProperties xmlns:a="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Model.DTO.AppSpaceIntegration.v1.Properties"> <a:Property> <a:Disable>true</a:Disable> <a:Id>123</a:Id> <a:Key>String</a:Key> <a:ResourceId>123</a:ResourceId> <a:ResourceType>Player</a:ResourceType> <a:Value>String</a:Value> </a:Property> </DeviceProperties> </DeviceResponse>
{ "DebugMessage":"String", "Errors":[ { "Code":"String", "Message":"String", "StackTrace":"String" } ], "Status":1, "DeviceProperties":[ { "Disable":true, "Id":123, "Key":"String", "ResourceId":123, "ResourceType":3, "Value":"String" } ] }