GET api/Device/Get
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Device| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| DeviceNumber | string |
None. |
|
| Location | string |
None. |
|
| CustomerCode | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "10d3f118-46e3-4834-8f19-2d472e7afda5",
"DeviceNumber": "sample string 2",
"Location": "sample string 3",
"CustomerCode": "sample string 4"
},
{
"Id": "10d3f118-46e3-4834-8f19-2d472e7afda5",
"DeviceNumber": "sample string 2",
"Location": "sample string 3",
"CustomerCode": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfDevice xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CashAutomation.Entities.ApiModels">
<Device>
<CustomerCode>sample string 4</CustomerCode>
<DeviceNumber>sample string 2</DeviceNumber>
<Id>10d3f118-46e3-4834-8f19-2d472e7afda5</Id>
<Location>sample string 3</Location>
</Device>
<Device>
<CustomerCode>sample string 4</CustomerCode>
<DeviceNumber>sample string 2</DeviceNumber>
<Id>10d3f118-46e3-4834-8f19-2d472e7afda5</Id>
<Location>sample string 3</Location>
</Device>
</ArrayOfDevice>