api/v1/sims/{id}/locationdetails
Method: GET https://developers.mobilemanager.co.uk/api/v1/sims/{id}/locationdetails
Summary
Retrieve location details for a SIM that supports location data and has granted consent to this data. Results are cached for 30 minutes.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The Id(UUID) of the SIM |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
SimGeolocation| Name | Description | Type | Additional information |
|---|---|---|---|
| ICCID | string |
None. |
|
| Timestamp | integer |
None. |
|
| CellId | string |
None. |
|
| LAC | string |
None. |
|
| MCC | integer |
None. |
|
| MNC | integer |
None. |
|
| Longitude | decimal number |
None. |
|
| Latitude | decimal number |
None. |
|
| ApproximateAddress | string |
None. |
|
| Accuracy | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"ICCID": "sample string 1",
"Timestamp": 2,
"CellId": "sample string 3",
"LAC": "sample string 4",
"MCC": 5,
"MNC": 6,
"Longitude": 7.1,
"Latitude": 8.1,
"ApproximateAddress": "sample string 9",
"Accuracy": 10
}
application/xml, text/xml
Sample:
<SimGeolocation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JolaSimPortal.Shared.Models"> <Accuracy>10</Accuracy> <ApproximateAddress>sample string 9</ApproximateAddress> <CellId>sample string 3</CellId> <ICCID>sample string 1</ICCID> <LAC>sample string 4</LAC> <Latitude>8.1</Latitude> <Longitude>7.1</Longitude> <MCC>5</MCC> <MNC>6</MNC> <Timestamp>2</Timestamp> </SimGeolocation>