PUT api/Users/Update/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
UserDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| Username | string |
None. |
|
| Password | string |
None. |
|
| RoleId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"FirstName": "sample string 2",
"LastName": "sample string 3",
"Username": "sample string 4",
"Password": "sample string 5",
"RoleId": 6
}
application/xml, text/xml
Sample:
<UserDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PMS_WEBAPI_UPDATED.Dto"> <FirstName>sample string 2</FirstName> <Id>1</Id> <LastName>sample string 3</LastName> <Password>sample string 5</Password> <RoleId>6</RoleId> <Username>sample string 4</Username> </UserDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.