I’m integrating PayTM Money API for placing Future orders programmatically. I could find the place order API for normal orders.
curl --location --request POST ‘https://developer.paytmmoney.com/orders/v1/place/regular’
–header ‘x-jwt-token: {{JWT-TOKEN}}’
–header ‘Content-Type: application/json’
–data-raw ‘{
“txn_type”: “B”,
“exchange”: “BSE”,
“segment”: “E”,
“product”: “I”,
“security_id”: “500570”,
“quantity”: 2,
“validity”: “DAY”,
“order_type”: “MKT”,
“price”: 0,
“source”: “N”,
“off_mkt_flag”: “false”
}’
But there is no mention of placing Future orders in this API or anywhere in the documentation. please help with this.