GET api/EstimateHour/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
EstimateHourName | 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. |
Response Formats
application/json, text/json
Sample:
{ "ID": "dcc86876-8d80-46c4-980a-fa01cfd5ee66", "EstID": "b9cbaf90-353a-476f-b0a0-0828cb6f026d", "StartTime": "2025-09-13T18:42:40.5409491-04:00", "EndTime": "2025-09-13T18:42:40.5409491-04: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-09-13T18:42:40.5409491-04:00</EndTime> <EstID>b9cbaf90-353a-476f-b0a0-0828cb6f026d</EstID> <ID>dcc86876-8d80-46c4-980a-fa01cfd5ee66</ID> <Men>1</Men> <StartTime>2025-09-13T18:42:40.5409491-04:00</StartTime> <Vans>1</Vans> </EstimateHour>