Skip to main content
To cancel a single order send:
[
    "cancelById",
    {
        "requestID": "YOUR_REQUEST_ID",
        "orderID": "ORDER_ID_TO_CANCEL"
    } 
]
To cancel multiple orders send:
[
    "cancelMultiple",
    {
        "requestID": "YOUR_REQUEST_ID",
        "orderIDs": [
            "ORDER_ID_1",
            "ORDER_ID_2",
            "ORDER_ID_3"
        ]
    }
]
To cancel all orders for a game send:
[
    "cancelAllByGame",
    {
        "requestID": "YOUR_REQUEST_ID",
        "gameID": "GAME_ID_TO_CANCEL"
    }
] 
To cancel all orders send:
[
    "cancelAll",
    {
        "requestID": "YOUR_REQUEST_ID",
    } 
]