'Unknown order sent' while trying to cancel order

i’ve read all thread about cancel order but stil can’t solve my problem.
here the problem. im trying to cancel open order using python future connector
here is response from /fapi/v1/openOrders

[{'orderId': 1896063477, 'symbol': 'HOTUSDT', 'status': 'NEW', 'clientOrderId': 'Tsar_TP', 'price': '0', 'avgPrice': '0', 'origQty': '0', 'executedQty': '0', 'cumQuote': '0', 'timeInForce': 'GTC', 'type': 'TAKE_PROFIT_MARKET', 'reduceOnly': True, 'closePosition': True, 'side': 'SELL', 'positionSide': 'BOTH', 'stopPrice': '0.006007', 'workingType': 'CONTRACT_PRICE', 'priceProtect': False, 'origType': 'TAKE_PROFIT_MARKET', 'time': 1641826768523, 'updateTime': 1641826768523}]

and here is my cancel order post data

{'symbol': 'HOTUSDT', 'orderId': 1896063477}

the response is 400, -2011, 'Unknown order sent.'
i’ve been trying to use orderId and origClientOrderId but still have same response, trying to fill timestamp but still the same.
this is my order that i want to cancel

THE ORDER IS STILL OPEN AND NOT FILLED AT ALL

I’m afraid the binance-futures-connector-python is not officially supported, so the best would be to open issue at their Issues page.
However you can check the logic at binance-futures-connector-python/account.py at d820b73a15e9f64c80891a13694ca0c5d1693b90 · Binance-docs/binance-futures-connector-python · GitHub, the code might not be written correctly.

but it listed in official binance api docs:
https://binance-docs.github.io/apidocs/futures/en/#general-info

however, im going to open an issue there

I went through the same issue. SOLUTION:
use this -
result = client.futures_cancel_order(

                                symbol=symbol,

                                orderId=orderId)

                               )