GET api/LaborTask
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of LaborTask| Name | Description | Type | Additional information |
|---|---|---|---|
| Labor_Task_Code | string |
String length: inclusive between 0 and 25 |
|
| Description | string |
String length: inclusive between 0 and 50 |
|
| Item_Code | string |
String length: inclusive between 0 and 25 |
|
| Job_Description | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Labor_Task_Code": "sample string 1",
"Description": "sample string 2",
"Item_Code": "sample string 3",
"Job_Description": "sample string 4"
},
{
"Labor_Task_Code": "sample string 1",
"Description": "sample string 2",
"Item_Code": "sample string 3",
"Job_Description": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfLaborTask xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SedonaServices.Models">
<LaborTask>
<Description>sample string 2</Description>
<Item_Code>sample string 3</Item_Code>
<Job_Description>sample string 4</Job_Description>
<Labor_Task_Code>sample string 1</Labor_Task_Code>
</LaborTask>
<LaborTask>
<Description>sample string 2</Description>
<Item_Code>sample string 3</Item_Code>
<Job_Description>sample string 4</Job_Description>
<Labor_Task_Code>sample string 1</Labor_Task_Code>
</LaborTask>
</ArrayOfLaborTask>