GET apioauth/installationportal/devices/{imei}
Query a service based on an imei
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| imei |
The queried imei |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
An InstallationPortalQueryDeviceResponse
InstallationPortalQueryDeviceResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ServiceId |
The service id the device is attached to |
unsigned integer |
None. |
| IMEI |
The imei of the device |
string |
None. |
| Registration |
The registration of the service the device is attached to |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ServiceId": 1,
"IMEI": "sample string 2",
"Registration": "sample string 3"
}
application/xml, text/xml
Sample:
<InstallationPortalQueryDeviceResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ServiceId>1</ServiceId> <IMEI>sample string 2</IMEI> <Registration>sample string 3</Registration> </InstallationPortalQueryDeviceResponse>