curl --request POST \
--url https://api.sequencemkts.com/v1/parent_orders \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"client_request_id": "<string>",
"client_order_id": "<string>",
"side": "BUY",
"symbol": "<string>",
"qty_1e8": 123,
"client_id": "<string>",
"constraints": {
"max_price_1e9": 95000000000000,
"urgency": "UNSPECIFIED",
"horizon_ms": 123,
"participation_limit_bps": 123
}
}
'