/vapi/v1/optionInfo returns invalid data

Vanilla Options API.

This method ‘/vapi/v1/optionInfo’ returns invalid data.

Example.

symbol: BTC-211001-30000-C
minQty: ‘0.0001’. (which is not true)
filters:
[ { filterType: ‘LOT_SIZE’,
minQty: ‘0.0001’, (which is not true)
maxQty: ‘10000’,
stepSize: ‘0.0001’ } ]

The problem is that when you try to place a limit order with quantity = 0.0001
You will catch an error:
{
“code”: -4004,
“msg”: “Quantity less than min quantity”
}

But quantity = 0.0002 will be accepted by the api.

Thank you for your feedback, we will look into this.

Thanks