GET v2/Sims/Iccid/{iccid}
Get a SIM by ICCID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| iccid |
The SIM ICCID |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Lhp.EquipmentIntelligence.WebApi.Client.Models.Sim| Name | Description | Type | Additional information |
|---|---|---|---|
| SimId |
The SIM ID |
integer |
None. |
| OwnerCustomerId |
The owning customer ID |
integer |
None. |
| ProviderId |
The provider ID |
integer |
None. |
| ProviderName |
The provider name |
string |
None. |
| Iccid |
The Integrated Circuit Card ID (ICCID) |
string |
None. |
| Imsi |
The International Mobile Subscriber Identity (IMSI) |
string |
None. |
| Msisdn |
The Mobile Station ISDN number (MSDIDN) |
string |
None. |
| SerialNumber |
The serial number |
string |
None. |
| PhoneNumber |
The phone number |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"SimId": 1,
"OwnerCustomerId": 2,
"ProviderId": 3,
"ProviderName": "sample string 4",
"Iccid": "sample string 5",
"Imsi": "sample string 6",
"Msisdn": "sample string 7",
"SerialNumber": "sample string 8",
"PhoneNumber": "sample string 9"
}
application/xml, text/xml
Sample:
<Sim xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SimId>1</SimId> <OwnerCustomerId>2</OwnerCustomerId> <ProviderId>3</ProviderId> <ProviderName>sample string 4</ProviderName> <Iccid>sample string 5</Iccid> <Imsi>sample string 6</Imsi> <Msisdn>sample string 7</Msisdn> <SerialNumber>sample string 8</SerialNumber> <PhoneNumber>sample string 9</PhoneNumber> </Sim>