https://github.com/dydxprotocol/v3-client/blob/16b171f49b0822b7c51d8d9290576a208893250a/src/modules/private.ts#L399 Documentation states that id should be optional and it is not here. ``` async getActiveOrders(market, side, id, genericParams = {}) { return this._get('active-orders', { market, side, id, // is not optional ...genericParams, }); } ```
v3-client/src/modules/private.ts
Line 399 in 16b171f
Documentation states that id should be optional and it is not here.