POST api/Customer/CustomerUpdateProfile

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
aupdate
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "UserId": 1,
  "Firstname": "sample string 2",
  "LastName": "sample string 3",
  "MobileNo": "sample string 4",
  "Email": "sample string 5",
  "EncryptedPassword": "sample string 6"
}

text/html

Sample:
{"UserId":1,"Firstname":"sample string 2","LastName":"sample string 3","MobileNo":"sample string 4","Email":"sample string 5","EncryptedPassword":"sample string 6"}

application/xml, text/xml

Sample:
<UpdateCustomerProfileParaBO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BeyondCodes.BO">
  <Email>sample string 5</Email>
  <EncryptedPassword>sample string 6</EncryptedPassword>
  <Firstname>sample string 2</Firstname>
  <LastName>sample string 3</LastName>
  <MobileNo>sample string 4</MobileNo>
  <UserId>1</UserId>
</UpdateCustomerProfileParaBO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "ResponseCode": 1,
  "ResponseMessage": "sample string 2",
  "ResponseValue": {}
}

text/html

Sample:
{"ResponseCode":1,"ResponseMessage":"sample string 2","ResponseValue":{}}

application/xml, text/xml

Sample:
<DataSubmit xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BeyondCodes.BO">
  <ResponseCode>1</ResponseCode>
  <ResponseMessage>sample string 2</ResponseMessage>
  <ResponseValue />
</DataSubmit>