Modify trigger price in Cover order

Is it possible to modify trigger_price in Modify Cover Order API?

The documentation doesn’t mention it.
https://developer.paytmmoney.com/docs/api/modify-cover-order/

Hi @sreejith, You can configure the trigger_price within the Modify Cover Order API. Below is an example of a request body:

{
    "order_no": "435124********",
    "serial_no": 1,
    "group_id": 4,
    "source": "W",
    "segment": "E",
    "validity": "DAY",
    "mkt_type": "NL",
    "exchange": "NSE",
    "product": "V",
    "quantity": 1,
    "txn_type": "S",
    "security_id": 119**,
    "order_type": "SLM",
    "price": 0,
    "trigger_price": "20.5",
    "off_mkt_flag": false,
    "leg_no": "2"
}

Feel free to extract these details from the order book API specified here.