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, // Type of function (number)
date: '2023/10/24', // Query Date (string)
branchNo: '6460', // Branch number (string)
account: '26', // Account (string)
batchSeqNo: '11EE72270B4D79F48000000C29304663' // serial number (string)
},
...
]
}