POST api/v1/me/timesheet/entry
Request Information
URI Parameters
None.
Body Parameters
UpdateTimesheetEntryDto| Name | Description | Type | Additional information |
|---|---|---|---|
| TimesheetId | integer |
None. |
|
| Date | string |
None. |
|
| TimeIn | string |
None. |
|
| TimeOut | string |
None. |
|
| EmpNote | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"TimesheetId": 1,
"Date": "sample string 2",
"TimeIn": "sample string 3",
"TimeOut": "sample string 4",
"EmpNote": "sample string 5"
}
application/xml, text/xml
Sample:
<MeTimesheetController.UpdateTimesheetEntryDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/"> <Date>sample string 2</Date> <EmpNote>sample string 5</EmpNote> <TimeIn>sample string 3</TimeIn> <TimeOut>sample string 4</TimeOut> <TimesheetId>1</TimesheetId> </MeTimesheetController.UpdateTimesheetEntryDto>
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.