var axios = require('axios');
var data = '{\r\n "user_id": "{{userid}}",\r\n "exchange": "MCX",\r\n "trading_symbol": "ALUMINIUM31JAN24",\r\n "oms_partner_order_no": "24010400000055",\r\n "enrich_order_no": "",\r\n "quantity": "3",\r\n "disclosed_quantity": "",\r\n "product_type": "I",\r\n "price": "3400",\r\n "price_type": "LMT",\r\n "trigger_price": "",\r\n "stop_loss": "",\r\n "square_off": "",\r\n "trailing_stop_loss": "",\r\n "after_market_order": "NO",\r\n "retention_type": "DAY",\r\n "order_source": "WEB",\r\n "partner_source": "KAMBALA",\r\n "lot_size":5000\r\n}';
var config = {
method: 'post',
maxBodyLength: Infinity,
url: 'https://orca-uatapi.enrichmoney.in/order-api/v1/order/modify',
headers: {
'Authorization': '{{jwt_token}}',
'Content-Type': 'application/json',
'user-id': '{{userid}}'
},
data : data
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});