Skip to main content

Get Batch Order List

batch_order_lists

Input Parameters

ParameterTypeMeaning
accountAccountAccount

Result

ParameterTypeMeaning
is_successboolWhether successful
dataListBatchResult list is returned
messagestringError message returned when is_success = false

BatchResult Parameter

Return type : Object

ParameterTypeMeaning
function_typeintFunction Type : 0 New Order, 10 New Order Executed, 15 Change Price, 20 Change Quantity, 30 Cancel, 90 Failed
datestringQuery Date (today)
branch_nostringBranch number
accountstringAccount
batch_seq_nostringSerial number

Request Example

sdk.stock.batch_order_lists(account)

Response Example

Result {
is_success: True,
message: None,
data : [BatchResult{
function_type: 0, # Function type (int)
date: "2023/10/16", # Transaction Date (string)
branch_no: "6460", # Branch code (string)
account: "26", # Account (string)
batch_seq_no: "11EE6BC3B85670DE8000000C29304663" # Batch order sequence number (string)
},
BatchResult{
function_type: 15, # Function type (int)
date: "2023/10/16", # Transaction Date (string)
branch_no: "6460", # Branch code (string)
account: "26", # Account (string)
batch_seq_no: "11EE6BC3E189F02A8000000C29304663" # Batch order sequence number (string)
},
...
]
}