PUT api/Account/Update

Request Information

URI Parameters

None.

Body Parameters

RegisterBindingModel
NameDescriptionTypeAdditional information
RoleId

string

Required

KHB_UserId

integer

None.

UserName

string

Required

Email

string

None.

PhoneNumber

string

None.

Tr_Pro_Id

integer

None.

C_Id

integer

None.

Password

string

Required

Data type: Password

String length: inclusive between 6 and 100

ConfirmPassword

string

Data type: Password

Request Formats

application/json, text/json

Sample:
{
  "RoleId": "sample string 1",
  "KHB_UserId": 2,
  "UserName": "sample string 3",
  "Email": "sample string 4",
  "PhoneNumber": "sample string 5",
  "Tr_Pro_Id": 6,
  "C_Id": 7,
  "Password": "sample string 8",
  "ConfirmPassword": "sample string 9"
}

application/xml, text/xml

Sample:
<RegisterBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KHBWebApi.Models">
  <C_Id>7</C_Id>
  <ConfirmPassword>sample string 9</ConfirmPassword>
  <Email>sample string 4</Email>
  <KHB_UserId>2</KHB_UserId>
  <Password>sample string 8</Password>
  <PhoneNumber>sample string 5</PhoneNumber>
  <RoleId>sample string 1</RoleId>
  <Tr_Pro_Id>6</Tr_Pro_Id>
  <UserName>sample string 3</UserName>
</RegisterBindingModel>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.