Target is not enabled for trading

I have an account that cannot execute any trades, but it doesn’t return the usual failure messages. It says “target is not enabled for trading”. It fails regardless of whether I send a market or a limit order.

The parameter I send is:
{
“clientOrderId”: “24030715154582”,
“productId”: “DOGE-USDT”,
“side”: “SELL”,
“orderConfiguration”: {
“limit_limit_gtd”: {
“base_size”: “741.80000000”,
“limit_price”: “0.1486”,
“post_only”: false,
“end_time”: “2024-03-07T20:25:45Z”
}
}
}

The response is
{
“success”: false,
“failure_reason”: “UNKNOWN_FAILURE_REASON”,
“order_id”: “”,
“error_response”: {
“error”: “UNSUPPORTED_ORDER_CONFIGURATION”,
“message”: “target is not enabled for trading”,
“error_details”: “”,
“new_order_failure_reason”: “UNSUPPORTED_ORDER_CONFIGURATION”
},
“order_configuration”: {
“limit_limit_gtd”: {
“base_size”: “741.80000000”,
“limit_price”: “0.1486”,
“end_time”: “2024-03-07T20:25:45Z”,
“post_only”: false
}
}
}

The “/products” endpoint from the exchange API states “trading_disabed” is false for DOGE-USDT.

Does anyone know what this error means or how to fix it?