GET v1/Sims/{id}/GetByIccid

Get a SIM by ICCID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

Body Parameters

None.

Response Information

Resource Description

Lhp.EquipmentIntelligence.WebApi.Models.V1.SimModel
NameDescriptionTypeAdditional information
SimId

integer

None.

OwnerCustomerId

integer

None.

ProviderId

integer

None.

ICCID

string

None.

IMSI

string

None.

MSISDN

string

None.

SerialNumber

string

None.

PhoneNumber

string

None.

Email

string

None.

Response Formats

application/json, text/json

Sample:
{
  "SimId": 1,
  "OwnerCustomerId": 2,
  "ProviderId": 3,
  "ICCID": "sample string 4",
  "IMSI": "sample string 5",
  "MSISDN": "sample string 6",
  "SerialNumber": "sample string 7",
  "PhoneNumber": "sample string 8",
  "Email": "sample string 9"
}

application/xml, text/xml

Sample:
<SimModel 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>
  <ICCID>sample string 4</ICCID>
  <IMSI>sample string 5</IMSI>
  <MSISDN>sample string 6</MSISDN>
  <SerialNumber>sample string 7</SerialNumber>
  <PhoneNumber>sample string 8</PhoneNumber>
  <Email>sample string 9</Email>
</SimModel>