POST api/esim/auth/EditCustomerProfile

Request Information

URI Parameters

None.

Body Parameters

EditCustomerProfileRequestModel
NameDescriptionTypeAdditional information
CustomerId

integer

None.

MemberId

string

None.

FirstName

string

None.

LastName

string

None.

PhoneNumber

string

None.

EmailAddress

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "MemberId": "sample string 2",
  "FirstName": "sample string 3",
  "LastName": "sample string 4",
  "PhoneNumber": "sample string 5",
  "EmailAddress": "sample string 6"
}

application/xml, text/xml

Sample:
<EditCustomerProfileRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Web.Api.Models.Customer">
  <CustomerId>1</CustomerId>
  <EmailAddress>sample string 6</EmailAddress>
  <FirstName>sample string 3</FirstName>
  <LastName>sample string 4</LastName>
  <MemberId>sample string 2</MemberId>
  <PhoneNumber>sample string 5</PhoneNumber>
</EditCustomerProfileRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ESimCustomerResponseModel
NameDescriptionTypeAdditional information
ResponseCode

string

None.

ResponseMessage

string

None.

Customer

ESimCustomer

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseCode": "sample string 1",
  "ResponseMessage": "sample string 2",
  "Customer": {
    "CustomerId": 1,
    "MemberId": "sample string 2",
    "CreatedDate": "2026-08-27T08:35:46.6172261-04:00",
    "EmailAddress": "sample string 4",
    "FirstName": "sample string 5",
    "LastName": "sample string 6",
    "OrderId": "sample string 7",
    "Password": "sample string 8",
    "PhoneNumber": "sample string 9",
    "Address": {
      "StreetAddress": "sample string 1",
      "City": "sample string 2",
      "State": "sample string 3",
      "Country": {
        "CountryId": 1,
        "CountryName": "sample string 2",
        "CountryCode": "sample string 3",
        "ISOCode": "sample string 4"
      },
      "ZipCode": "sample string 4",
      "HomePhone": "sample string 5",
      "WorkPhone": "sample string 6",
      "Mobile": "sample string 7",
      "AccountEmail": "sample string 8"
    },
    "CallingCountryId": 10,
    "ReferredBy": "sample string 11",
    "IsNew": true,
    "IpAddress": "sample string 13",
    "IsShowStatus": true,
    "LoginToken": "sample string 15"
  }
}

application/xml, text/xml

Sample:
<ESimCustomerResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Web.Api.Models.Customer.Response">
  <Customer>
    <Address>
      <AccountEmail>sample string 8</AccountEmail>
      <City>sample string 2</City>
      <Country>
        <CountryCode>sample string 3</CountryCode>
        <CountryId>1</CountryId>
        <CountryName>sample string 2</CountryName>
        <ISOCode>sample string 4</ISOCode>
      </Country>
      <HomePhone>sample string 5</HomePhone>
      <Mobile>sample string 7</Mobile>
      <State>sample string 3</State>
      <StreetAddress>sample string 1</StreetAddress>
      <WorkPhone>sample string 6</WorkPhone>
      <ZipCode>sample string 4</ZipCode>
    </Address>
    <CallingCountryId>10</CallingCountryId>
    <CreatedDate>2026-08-27T08:35:46.6172261-04:00</CreatedDate>
    <CustomerId>1</CustomerId>
    <EmailAddress>sample string 4</EmailAddress>
    <FirstName>sample string 5</FirstName>
    <IpAddress>sample string 13</IpAddress>
    <IsNew>true</IsNew>
    <IsShowStatus>true</IsShowStatus>
    <LastName>sample string 6</LastName>
    <LoginToken>sample string 15</LoginToken>
    <MemberId>sample string 2</MemberId>
    <OrderId>sample string 7</OrderId>
    <Password>sample string 8</Password>
    <PhoneNumber>sample string 9</PhoneNumber>
    <ReferredBy>sample string 11</ReferredBy>
  </Customer>
  <ResponseCode>sample string 1</ResponseCode>
  <ResponseMessage>sample string 2</ResponseMessage>
</ESimCustomerResponseModel>