PUT api/Users/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
UserModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | string |
None. |
|
| string |
None. |
||
| Username | string |
None. |
|
| Firstname | string |
None. |
|
| Lastname | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": "sample string 1",
"Email": "sample string 2",
"Username": "sample string 3",
"Firstname": "sample string 4",
"Lastname": "sample string 5"
}
application/xml, text/xml
Sample:
<UserModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GRUBER.Tennis.App.Server.Models"> <Email>sample string 2</Email> <Firstname>sample string 4</Firstname> <ID>sample string 1</ID> <Lastname>sample string 5</Lastname> <Username>sample string 3</Username> </UserModel>
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.