Get Batch Order List
batchOrderLists
Request Parameter
| Parameter | Type | Meaning |
|---|---|---|
| account | Account | Account |
Result Response
| Parameter | Type | Meaning |
|---|---|---|
| isSuccess | bool | Interface result |
| data | Object | BatchResult list is returned |
| message | string ? (optional) | isSuccess = False error description is returned |
BatchResult Parameter
Return type : Object
| Parameter | Type | Meaning |
|---|---|---|
| function_type | number | Function Type : 0 New, 10 Execute New, 15 Amend Price, 20 Amend Lot, 30 Cancel |
| date | string | Query Date (today) |
| branchNo | string | Branch number |
| account | string | Account |
| batchSeqNo | string | Serial number |
Request Example
sdk.futopt.batchOrderLists(target_user)
Response Example
{
isSuccess: true,
data: [
{
functionType: 0,
date: '2023/10/24',
branchNo: '6460',
account: '26',
batchSeqNo: '11EE72270B4D79F48000000C29304663'
},
...
]
}