api/v1/devices
Method: GET https://simportal-api-staging.azurewebsites.net/api/v1/devices?skip={skip}&take={take}
Summary
Get a list of devices that belongs to a customer. Parameters are completely optional
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| skip |
The number of records to skip |
integer |
None. |
| take |
The number of records to take |
integer |
Default value is 100 |
Body Parameters
None.
Response Information
Resource Description
Collection of DeviceModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| CustomerId | globally unique identifier |
None. |
|
| SerialNumber | string |
None. |
|
| Manufacturer | string |
None. |
|
| Model | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "da3362e9-3857-4d0d-b962-32db9191f91f",
"CustomerId": "9968a2c3-b421-4392-9064-78e70c6f2e2b",
"SerialNumber": "sample string 3",
"Manufacturer": "sample string 4",
"Model": "sample string 5"
},
{
"Id": "da3362e9-3857-4d0d-b962-32db9191f91f",
"CustomerId": "9968a2c3-b421-4392-9064-78e70c6f2e2b",
"SerialNumber": "sample string 3",
"Manufacturer": "sample string 4",
"Model": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfDeviceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SimPortalApi.Controllers">
<DeviceModel>
<CustomerId>9968a2c3-b421-4392-9064-78e70c6f2e2b</CustomerId>
<Id>da3362e9-3857-4d0d-b962-32db9191f91f</Id>
<Manufacturer>sample string 4</Manufacturer>
<Model>sample string 5</Model>
<SerialNumber>sample string 3</SerialNumber>
</DeviceModel>
<DeviceModel>
<CustomerId>9968a2c3-b421-4392-9064-78e70c6f2e2b</CustomerId>
<Id>da3362e9-3857-4d0d-b962-32db9191f91f</Id>
<Manufacturer>sample string 4</Manufacturer>
<Model>sample string 5</Model>
<SerialNumber>sample string 3</SerialNumber>
</DeviceModel>
</ArrayOfDeviceModel>