POST UpdateProfile

Request Information

URI Parameters

None.

Body Parameters

UpdateProfileRequest
NameDescriptionTypeAdditional information
UserId

integer

None.

FirstName

string

None.

Mobile

string

None.

Email

string

None.

DOB

string

None.

Default_Loc_Id

integer

None.

Image_Name

string

None.

Area_Id

integer

None.

Country_Id

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": 1,
  "FirstName": "sample string 2",
  "Mobile": "sample string 3",
  "Email": "sample string 4",
  "DOB": "sample string 5",
  "Default_Loc_Id": 6,
  "Image_Name": "sample string 7",
  "Area_Id": 8,
  "Country_Id": 9
}

application/xml, text/xml

Sample:
<UpdateProfileRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NailItWeb.UINew.Models">
  <Area_Id>8</Area_Id>
  <Country_Id>9</Country_Id>
  <DOB>sample string 5</DOB>
  <Default_Loc_Id>6</Default_Loc_Id>
  <Email>sample string 4</Email>
  <FirstName>sample string 2</FirstName>
  <Image_Name>sample string 7</Image_Name>
  <Mobile>sample string 3</Mobile>
  <UserId>1</UserId>
</UpdateProfileRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GeneralResponse
NameDescriptionTypeAdditional information
Status

integer

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 1,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<GeneralResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NailItWeb.UINew.Models">
  <Message>sample string 2</Message>
  <Status>1</Status>
</GeneralResponse>