POST API/User/UpdateProfile

Update User Profile: UserId,LoginId,FirstName,LastName are the required parameters to update User Profile

Request Information

URI Parameters

None.

Body Parameters

Update Profile Entity

UpdateProfile
NameDescriptionTypeAdditional information
FirstName

string

None.

LastName

string

None.

AlternativeMobile

string

None.

Request Formats

application/json, text/json

Sample:
{
  "firstName": "sample string 1",
  "lastName": "sample string 2",
  "alternativeMobile": "sample string 3"
}

application/xml, text/xml

Sample:
<UpdateProfile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrownCow.UserManagement.EntityLayer">
  <AlternativeMobile>sample string 3</AlternativeMobile>
  <FirstName>sample string 1</FirstName>
  <LastName>sample string 2</LastName>
</UpdateProfile>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Success/Failure Result

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.