PUT v1/Sims/{id}

Update a SIM.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

ID of the SIM to be updated.

integer

Required

Body Parameters

New values for the SIM.

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.