PUT api/job/hours/{a_job}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| a_job | integer |
Required |
Body Parameters
DTOJobHours| Name | Description | Type | Additional information |
|---|---|---|---|
| InspectionHours | decimal number |
None. |
|
| InstallationHours | decimal number |
None. |
|
| AdjustHours | decimal number |
None. |
|
| TravelHours | decimal number |
None. |
|
| ProjectManagementHours | decimal number |
None. |
|
| NonStockHours | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"InspectionHours": 1.0,
"InstallationHours": 2.0,
"AdjustHours": 3.0,
"TravelHours": 4.0,
"ProjectManagementHours": 5.0,
"NonStockHours": 6.0
}
application/xml, text/xml
Sample:
<DTOJobHours xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eps_api.Models"> <AdjustHours>3</AdjustHours> <InspectionHours>1</InspectionHours> <InstallationHours>2</InstallationHours> <NonStockHours>6</NonStockHours> <ProjectManagementHours>5</ProjectManagementHours> <TravelHours>4</TravelHours> </DTOJobHours>
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>