Take Profit and Stop Loss

Does anyone know how to structure the request body to set a Take Profit and Stop Loss?

Right now, I’m doing something like this:

        await alpaca.createOrder({
          symbol: 'SPY',
          qty: 10,
          side: "sell",
          type: "market",
          time_in_force: "day",
          take_profit: {
            limit_price: takeProfit
          },
          stop_loss:  {
            stop_price: stopLoss
          }
        });

but I don’t see the take profit and stop loss values shown in the Alpaca dashboard

alpaca_client.place_order(
symbol=symbol,
qty=position_size,
side=“buy”
order_type=“market”,
time_in_force=“gtc”, # alternatively can be “day”
order_class=“bracket”,
take_profit={“limit_price”: round(take_profit_price, 2)},
stop_loss={“stop_price”: round(stop_loss_price, 2)}
)