PUT api/user/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
UserUpdateRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Username | string |
Required String length: inclusive between 0 and 50 |
|
| IsAvailable | boolean |
None. |
|
| RoleId | integer |
None. |
|
| Updater | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"Username": "sample string 1",
"IsAvailable": true,
"RoleId": 1,
"Updater": "sample string 3"
}
application/xml, text/xml
Sample:
<UserUpdateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EquipMaintainAPI.Models"> <IsAvailable>true</IsAvailable> <RoleId>1</RoleId> <Updater>sample string 3</Updater> <Username>sample string 1</Username> </UserUpdateRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.