PUT api/user/overview/{a_user}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| a_user | integer |
Required |
Body Parameters
DTOUserOverview| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Title | string |
None. |
|
| Location | string |
None. |
|
| Department | string |
None. |
|
| TruckNo | integer |
None. |
|
| Supervisor_Id | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Title": "sample string 2",
"Location": "sample string 3",
"Department": "sample string 4",
"TruckNo": 1,
"Supervisor_Id": 1
}
application/xml, text/xml
Sample:
<DTOUserOverview xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eps_api.Models"> <Department>sample string 4</Department> <Id>1</Id> <Location>sample string 3</Location> <Supervisor_Id>1</Supervisor_Id> <Title>sample string 2</Title> <TruckNo>1</TruckNo> </DTOUserOverview>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>