GET api/Command/Last/{deviceId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| deviceId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Command| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| DeviceId | integer |
None. |
|
| Time | string |
None. |
|
| Value | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"DeviceId": 2,
"Time": "sample string 3",
"Value": "sample string 4"
}
application/xml, text/xml
Sample:
<Command xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CheapIdeas.Web.Models.Entities"> <DeviceId>2</DeviceId> <Id>1</Id> <Time>sample string 3</Time> <Value>sample string 4</Value> </Command>