api/v1/devices/{id}/device

Method: GET https://simportal-api-staging.azurewebsites.net/api/v1/devices/{id}/device

Summary

Get a single device

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The unique id of a device

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

DeviceModel
NameDescriptionTypeAdditional 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": "350c5f77-a7e1-426a-bffb-44427e12c220",
  "CustomerId": "f521998c-aab6-423c-bace-a0f2499af6bc",
  "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>f521998c-aab6-423c-bace-a0f2499af6bc</CustomerId>
  <Id>350c5f77-a7e1-426a-bffb-44427e12c220</Id>
  <Manufacturer>sample string 4</Manufacturer>
  <Model>sample string 5</Model>
  <SerialNumber>sample string 3</SerialNumber>
</DeviceModel>