General Instructions
General Instructions
Steps to Generate Access Token
Steps to Generate Access Token
Order Management API
Order Management API

Trading

Cancel Open Orders

DESCRIPTION

Allow user to cancel open orders in the order book.

URL

<protocol>://<domain name>/kb/PlaceOrders/CancelOpenOrders

INPUT

S no. Parameter Description Mandatory/Comments
1 Uid User Id Yes
2 Norenordno Order Number Yes

SAMPLE



{
  "Uid": "DEMO",
  "Norenordno": "22072700000036",
}

RESPONSE

S No. Parameter Description
1 ResponseId Response Id
2 ResponseMessage Response Message
3 Data It contains the data of the response, such as the status of the request, request time, etc.

DATA

S No. Parameter Description
1 Stat Status
Possible values:
'Ok'
'Not_Ok'
2 Request_time Response received time
3 result Order Number
4 Emsg Message is a small remark,this will be present only if Order cancelation fails.

SAMPLE



{
  "StatusCode": 200,
  "Message": "Request successful.",
  "IsError": false,
  "ResponseException": null,
  "Result": {
    "ResponseId": 1,
    "ResponseMessage": null,
    "Data": {
      "Stat": "Ok",
      "Request_time": "17:21:27 27-07-2022",
      "result": "22072700000036",
      "Emsg": null
    }
  }
}