curl --request PUT \
--url https://api-evm.orderly.org/v1/order \
--header 'Content-Type: application/json' \
--header 'orderly-account-id: <orderly-account-id>' \
--header 'orderly-key: <orderly-key>' \
--header 'orderly-signature: <orderly-signature>' \
--header 'orderly-timestamp: <orderly-timestamp>' \
--data '{
"order_id": "<string>",
"symbol": "<string>",
"client_order_id": "<string>",
"order_type": "<string>",
"order_price": 123,
"order_quantity": 123,
"order_amount": 123,
"reduce_only": true,
"visible_quantity": 123,
"side": "<string>",
"order_tag": "<string>"
}'