POST Account/UpdateMobileAndEmail

Request Information

URI Parameters

None.

Body Parameters

CustomerDetail
NameDescriptionTypeAdditional information
CustomerId

integer

None.

EmailAddress

string

None.

IsEmailVerified

boolean

None.

MobileNo

string

None.

CountryCode

string

None.

IsMobileNoVerified

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "EmailAddress": "sample string 2",
  "IsEmailVerified": true,
  "MobileNo": "sample string 4",
  "CountryCode": "sample string 5",
  "IsMobileNoVerified": true
}

application/xml, text/xml

Sample:
<CustomerDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AstroVed.Api.DAL">
  <CountryCode>sample string 5</CountryCode>
  <CustomerId>1</CustomerId>
  <EmailAddress>sample string 2</EmailAddress>
  <IsEmailVerified>true</IsEmailVerified>
  <IsMobileNoVerified>true</IsMobileNoVerified>
  <MobileNo>sample string 4</MobileNo>
</CustomerDetail>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'CustomerDetail'.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.