POST v1/Sims

Creates a new SIM

Request Information

URI Parameters

None.

Body Parameters

Details of the SIM to be created.

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.

Request 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>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.