curl --request POST \
--url https://api.ekiden.fi/api/v1/order/place-batch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"request": [
{
"close_on_trigger": true,
"margin_mode": "Cross",
"order_type": "Limit",
"post_only": true,
"price": "<string>",
"qty": "<string>",
"reduce_only": true,
"side": "Sell",
"sub_account_address": "<string>",
"symbol": "BTCUSDC",
"time_in_force": "GTC",
"expire_time": "1672531200000",
"order_link_id": "<unknown>",
"slippage_tolerance": "<unknown>",
"smp_group": 1,
"smp_type": "<unknown>",
"tpsl": "<unknown>",
"trigger": "<unknown>"
}
]
}
'