How to Access/Update Held Orders?

I am attempting to change the way I update my stop_loss orders to automate them more effectively. I can access the LIMIT side of the bracket using the code below and referencing the order ID, but how do I access the HELD stop orders? Even searching based on all CLOSED, or ALL orders does not return them. I can view them in dashboard, but not in code.

def update_bracket(account: TradingClient, pos_info, exit_target, stop_loss, buy_handle, symbol):
# Get Open orders for a handle
if isinstance(symbol, str):
symbol = [symbol]
get_handle_orders_data = GetOrdersRequest(
status=QueryOrderStatus.OPEN,
symbols=symbol,
nested=False
)

Specifically How do I get these order IDs through Python?

Try order.client_order_id.