POST horizon/v1/employees/overtimes
Creates a new overtime
Request Information
URI Parameters
None.
Body Parameters
Milenio3.Horizon.Dto.Entities.NewOvertimeDto| Name | Description | Type | Additional information |
|---|---|---|---|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| Code | string |
None. |
|
| Remarks | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"StartDate": "2026-06-21T01:13:19.5942433+01:00",
"EndDate": "2026-06-21T01:13:19.5942433+01:00",
"Code": "sample string 3",
"Remarks": "sample string 4"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
The created overtime
Milenio3.Horizon.Dto.Entities.OvertimeDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Date | date |
None. |
|
| StartTime | integer |
None. |
|
| EndTime | integer |
None. |
|
| Code | string |
None. |
|
| Remarks | string |
None. |
|
| Status | Milenio3.Horizon.Dto.Entities.StatusType |
None. |
|
| Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Date": "2026-06-21T01:13:19.5942433+01:00",
"StartTime": 2,
"EndTime": 3,
"Code": "sample string 4",
"Remarks": "sample string 5",
"Status": 10,
"Id": 6
}