Delete pending order request
Delete a pending order
Request address
- API Address (requestURI) : /api/v1/request/deletePendingRequest
Request parameters
Parameter name | Type | Requirement | Description |
---|---|---|---|
login | Long | R | Administrator account |
sourceLogin | Long | R | Operator account |
accountLogin | Long | R | Current account login |
orderExternalID | String | R | The external ID for the order |
order | Long | R | Order NO. |
symbol | String | R | The symbol for the order |
type | Integer | R | Order type, only supports 2-BUY_LIMIT and 3-SELL_LIMIT |
|
Sample request
{
"login": 100001,
"sourceLogin": 100001,
"accountLogin": 200000252,
"orderExternalID": "10005464646466161",
"order": 280310,
"symbol": "UKOIL",
"type": 3
}
Response parameters
Parameter name | Type | Requirement | description |
---|---|---|---|
data | String | R | The only certificate corresponding to the trading platform |
Sample response
{
"code": "200",
"desc": "Success",
"data": "227553797"
}