POST api/update/user

Request Information

URI Parameters

None.

Body Parameters

UpdateUser
NameDescriptionTypeAdditional information
UserId

integer

None.

UserName

string

None.

EmpId

integer

None.

UserPass

string

None.

UserType

string

None.

ModifiedBy

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": 1,
  "UserName": "sample string 2",
  "EmpId": 3,
  "UserPass": "sample string 4",
  "UserType": "sample string 5",
  "ModifiedBy": "sample string 6"
}

application/xml, text/xml

Sample:
<UpdateUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/working_sample_mvc_api.Models">
  <EmpId>3</EmpId>
  <ModifiedBy>sample string 6</ModifiedBy>
  <UserId>1</UserId>
  <UserName>sample string 2</UserName>
  <UserPass>sample string 4</UserPass>
  <UserType>sample string 5</UserType>
</UpdateUser>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.