GET v2/Sims/{id}

Get a SIM by ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The SIM ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Lhp.EquipmentIntelligence.WebApi.Client.Models.Sim
NameDescriptionTypeAdditional 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>