// Trading - underlying (Bearer required; x-lang, x-via, x-otp-token on POST/PUT/DELETE)
router.use(‘/accounts/:accountId/orders/underlying’, requireUnderlyingOrderHeaders);
router.get(‘/accounts/:accountId/orders/underlying’, getOrdersUnderlyingList);
router.post(‘/accounts/:accountId/orders/underlying’, postOrdersUnderlying);
router.get(‘/accounts/:accountId/orders/underlying/:orderId’, putDeleteOrdersUnderlyingById);
router.put(‘/accounts/:accountId/orders/underlying/:orderId’, putDeleteOrdersUnderlyingById);
router.delete(‘/accounts/:accountId/orders/underlying/:orderId’,putDeleteOrdersUnderlyingById);
Sandbox