Order Details
https://connects.torusdigital.com/api/v1/order/detailsHeader Parameters
Name
Value
Request Parameter
Parameter
Sample/Possible Value
Mandatory
Description
Request
curl --location 'https://connects.torusdigital.com/api/v1/order/details' \
--header 'Authorization: Bearer {{token}}' \
--header 'Content-Type: application/json' \
--data '{
"source": "N",
"data": {
"order_no": "1161240610102",
"segment": "E"
}
}'Unirest.setTimeouts(0, 0);
HttpResponse<String> response = Unirest.post("https://connects.torusdigital.com/api/v1/order/details")
.header("Authorization", "Bearer {{token}}")
.header("Content-Type", "application/json")
.body("{" +
"\n \"source\": \"N\"," +
"\n \"data\": {" +
"\n \"order_no\": \"1161240610102\"," +
"\n \"segment\": \"E\"" +
"\n }" +
"\n}")
.asString();Parameter
Description
Last updated