Cannot place order via websocket

Hello,

I’m trying to place an order via WS, but I’m getting a strange error message as a response.

Here’s my message that I send:

{“id”:1682431283231365000,“method”:“order.place”,“params”:{“Symbol”:“BTCBUSD”,“Side”:“BUY”,“Quantity”:“0.003",“type”:“LIMIT”,“timeInForce”:“GTC”,“price”:“18000",“responseType”:“FULL”,“apiKey”:“APIKEY”,“timestamp”:1682431283231,“signature”:“SIGNATURE”}}

And here’s the response:

{“error”:{“code”:2,“msg”:“Invalid request: unknown variant `order.place`, expected one of `SUBSCRIBE`, `UNSUBSCRIBE`, `LIST_SUBSCRIPTIONS`, `SET_PROPERTY`, `GET_PROPERTY` at line 1 column 48”},“id”:1682431283231365000}

What could be wrong? Thanks!

Are you using base URL for the Websocket API?
Binance API Documentation → The base endpoint is: wss://ws-api.binance.com:443/ws-api/v3

Yes, thank you! I didn’t realize that I needed to use another endpoint. I was still using the streaming one.