Binance API is not accepting new orders.

Hello,
I get the following error when sending new orders via BINANCE API. How can I solve this problem? I write my codes below. I would be happy if you review it. Thanks in advance.
THIS IS THE ERROR:

{'code': -1013, 'msg': 'Filter failure: NOTIONAL'}
<Response [400]>

CODES I WRITE:
parametre={“symbol”:“SHIBUSDT”,
“side”:“BUY”,
“type”:“MARKET”,
“quantity”:300,
“newOrderRespType”:“ACK”,
“timestamp”:timestamp}
paybytes = urllib.parse.urlencode(parametre)
parametre[“signature”] = hmac.new(secret_key.encode(“utf-8”), paybytes.encode(“utf-8”), hashlib.sha256).hexdigest()

x=requests.post(“https://api.binance.com/api/v3/order”,headers=hheaders,params=parametre).json()
print(x)

Please check this filter from the endpoint /api/v3/exchangeInfo, which contains the NOTIONAL value of the symbol.