PUT api/EstimateHour/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
EstimateHour| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | globally unique identifier |
None. |
|
| EstID | globally unique identifier |
None. |
|
| StartTime | date |
None. |
|
| EndTime | date |
None. |
|
| BreakTime | time interval |
None. |
|
| Vans | integer |
None. |
|
| Men | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": "4899609b-c0a8-44a4-a415-832e8a94f3ec",
"EstID": "b4827873-8b31-4e89-ab1e-55bed561d40a",
"StartTime": "2025-12-15T18:24:56.2493229-05:00",
"EndTime": "2025-12-15T18:24:56.2493229-05:00",
"BreakTime": "00:00:00.1234567",
"Vans": 1,
"Men": 1
}
application/xml, text/xml
Sample:
<EstimateHour xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Models"> <BreakTime>PT0.1234567S</BreakTime> <EndTime>2025-12-15T18:24:56.2493229-05:00</EndTime> <EstID>b4827873-8b31-4e89-ab1e-55bed561d40a</EstID> <ID>4899609b-c0a8-44a4-a415-832e8a94f3ec</ID> <Men>1</Men> <StartTime>2025-12-15T18:24:56.2493229-05:00</StartTime> <Vans>1</Vans> </EstimateHour>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.