GET api/TimeOrderLines/{orderNo}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderNo | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TimeOrderLine| Name | Description | Type | Additional information |
|---|---|---|---|
| LineNo | integer |
None. |
|
| TransactionDate | integer |
None. |
|
| ProductNo | string |
None. |
|
| EmployeeNo | integer |
None. |
|
| Description | string |
None. |
|
| ProjectNo | string |
None. |
|
| Quantity | decimal number |
None. |
|
| CostPrice | decimal number |
None. |
|
| Comment | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"lineNo": 1,
"transactionDate": 2,
"productNo": "sample string 3",
"employeeNo": 4,
"description": "sample string 5",
"projectNo": "sample string 6",
"quantity": 7.0,
"costPrice": 8.0,
"comment": "sample string 9"
},
{
"lineNo": 1,
"transactionDate": 2,
"productNo": "sample string 3",
"employeeNo": 4,
"description": "sample string 5",
"projectNo": "sample string 6",
"quantity": 7.0,
"costPrice": 8.0,
"comment": "sample string 9"
}
]
application/xml, text/xml
Sample:
<ArrayOfTimeOrderLine xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.TimeOrderLinesController.Response">
<TimeOrderLine>
<Comment xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.TimeOrderLinesController">sample string 9</Comment>
<CostPrice xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.TimeOrderLinesController">8</CostPrice>
<Description xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.TimeOrderLinesController">sample string 5</Description>
<EmployeeNo xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.TimeOrderLinesController">4</EmployeeNo>
<ProductNo xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.TimeOrderLinesController">sample string 3</ProductNo>
<ProjectNo xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.TimeOrderLinesController">sample string 6</ProjectNo>
<Quantity xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.TimeOrderLinesController">7</Quantity>
<TransactionDate xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.TimeOrderLinesController">2</TransactionDate>
<LineNo>1</LineNo>
</TimeOrderLine>
<TimeOrderLine>
<Comment xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.TimeOrderLinesController">sample string 9</Comment>
<CostPrice xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.TimeOrderLinesController">8</CostPrice>
<Description xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.TimeOrderLinesController">sample string 5</Description>
<EmployeeNo xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.TimeOrderLinesController">4</EmployeeNo>
<ProductNo xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.TimeOrderLinesController">sample string 3</ProductNo>
<ProjectNo xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.TimeOrderLinesController">sample string 6</ProjectNo>
<Quantity xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.TimeOrderLinesController">7</Quantity>
<TransactionDate xmlns="http://schemas.datacontract.org/2004/07/VismaBusinessWebAPI.Models.WebAPI.Controllers.TimeOrderLinesController">2</TransactionDate>
<LineNo>1</LineNo>
</TimeOrderLine>
</ArrayOfTimeOrderLine>