Get Batch Order List
batchOrderLists
Input Parameters
| Parameter | Type | Meaning |
|---|---|---|
| account | Account | Account |
Result
| Parameter | Type | Meaning |
|---|---|---|
| isSuccess | bool | Whether successful |
| data | Object | BatchResult list is returned |
| message | string ? (optional) | Error message returned when isSuccess = false |
BatchResult Parameter
Return type : Object
| Parameter | Type | Meaning |
|---|---|---|
| functionType | number | Function Type : 0 New Order, 10 New Order Executed, 15 Change Price, 20 Change Quantity, 30 Cancel, 90 Failed |
| date | string | Query Date (today) |
| branchNo | string | Branch number |
| account | string | Account |
| batchSeqNo | string | Serial number |
Request Example
sdk.stock.batchOrderLists(target_user)
Response Example
{
isSuccess: true,
data: [
{
functionType: 0,
date: '2023/10/24',
branchNo: '6460',
account: '26',
batchSeqNo: '11EE72270B4D79F48000000C29304663'
},
...
]
}