Order Convert To delivery
https://connects.torusdigital.com/api/v1/order/convert/deliveryHeader Parameters
Name
Value
Request Parameter
Parameter
Value
Mandatory
Remarks
Request
curl --location 'https://connects.torusdigital.com/api/v1/order/convert/delivery' \
--header 'Authorization: Bearer {{token}}' \
--header 'Content-Type: application/json' \
--data '{
"source": "N",
"data": {
"exchange": "NSE",
"segment": "E",
"security_id": "14366",
"quantity": 1,
"mkt_type": "NL",
"product_from": "I",
"product_to": "C",
"user_type": "C",
"txn_type": "B"
}
}'Unirest.setTimeouts(0, 0);
HttpResponse<String> response = Unirest.post("https://connects.torusdigital.com/api/v1/order/convert/delivery")
.header("Authorization", "Bearer {{token}}")
.header("Content-Type", "application/json")
.body("{\n" +
" \"source\": \"N\",\n" +
" \"data\": {\n" +
" \"exchange\": \"NSE\",\n" +
" \"segment\": \"E\",\n" +
" \"security_id\": \"14366\",\n" +
" \"quantity\": 1,\n" +
" \"mkt_type\": \"NL\",\n" +
" \"product_from\": \"I\",\n" +
" \"product_to\": \"C\",\n" +
" \"user_type\": \"C\",\n" +
" \"txn_type\": \"B\"\n" +
" }\n" +
"}")
.asString();Parameter
Description
Last updated