POST api/Login/UpdateProfile

Request Information

URI Parameters

None.

Body Parameters

ProfileUpdateFilter
NameDescriptionTypeAdditional information
CustomerId

string

None.

ProfileImage

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": "sample string 1",
  "ProfileImage": "sample string 2"
}

application/xml, text/xml

Sample:
<ProfileUpdateFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alphawin.MODAL.CustomerModal">
  <CustomerId>sample string 1</CustomerId>
  <ProfileImage>sample string 2</ProfileImage>
</ProfileUpdateFilter>

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 'ProfileUpdateFilter'.

Response Information

Resource Description

CustomerProfileUpdateResponse
NameDescriptionTypeAdditional information
StatusCode

integer

None.

status

string

None.

statusText

string

None.

CDS

CustomerProfileUpdate

None.

Response Formats

application/json, text/json

Sample:
{
  "StatusCode": 1,
  "status": "sample string 2",
  "statusText": "sample string 3",
  "CDS": {
    "CustomerId": "sample string 1",
    "ProfileImage": "sample string 2"
  }
}

application/xml, text/xml

Sample:
<CustomerProfileUpdateResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alphawin.MODAL.CustomerModal">
  <CDS>
    <CustomerId>sample string 1</CustomerId>
    <ProfileImage>sample string 2</ProfileImage>
  </CDS>
  <StatusCode>1</StatusCode>
  <status>sample string 2</status>
  <statusText>sample string 3</statusText>
</CustomerProfileUpdateResponse>