api/v1/devices/{id}/device
Method: GET https://developers.mobilemanager.co.uk/api/v1/devices/{id}/device
Summary
Get a single device
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
The unique id of a device |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
DeviceModelName | 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": "3531021f-d6d5-43ff-8704-4f9550c871f7", "CustomerId": "a3740dc8-0c1a-47fc-a3eb-22a8621be3f1", "SerialNumber": "sample string 3", "Manufacturer": "sample string 4", "Model": "sample string 5" }
application/xml, text/xml
Sample:
<DeviceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SimPortalApi.Controllers"> <CustomerId>a3740dc8-0c1a-47fc-a3eb-22a8621be3f1</CustomerId> <Id>3531021f-d6d5-43ff-8704-4f9550c871f7</Id> <Manufacturer>sample string 4</Manufacturer> <Model>sample string 5</Model> <SerialNumber>sample string 3</SerialNumber> </DeviceModel>