무기한 주문 취소
POST /v1/trading-gateway/cancel-orders: `{ symbol, orderId }`로 주문을 일괄 취소합니다.
POST /v1/trading-gateway/cancel-orders
{ symbol, orderId }로 주문을 일괄 취소합니다. Body: { cancels: { symbol: string, orderId: string }[], subAccountId?: string }입니다. 취소된 주문 ID 목록과 감사를 위한 업스트림 raw_data를 반환합니다.
| 메서드 | POST |
| 경로 | /v1/trading-gateway/cancel-orders |
| 인증 | GATEWAY_AUTH_TOKEN이 설정된 경우 Authorization: Bearer <token> 필요 |
| 카테고리 | perps |
요청 본문
{ "cancels": [{ "symbol": "BTC", "orderId": "ord_abc" }], "subAccountId": "sub_hl_default" }응답 본문
{ "cancelled_order_ids": ["ord_abc"], "raw_data": { } }