Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | Transact API's Client ID |
developerAPIKey | yes | string | Transact API's Developer API Key |
accountId | yes | string | Account ID generated by the TAPI |
tradeId | yes | integer | Trade ID generated by the TAPI |
errDesc | no | string | If any error caused |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/deleteTrade -d developerAPIKey=somedeveloperkey -d clientID=someclientid -d accountId=A77654 -d tradeId=2354 -d errDesc=test
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
tradeDetails | string | Array of trade details ( partyId, offeringId, orderStatus ) |
{ "statusCode": "101", "statusDesc": "Ok", "tradeDetails": [ { "partyId": "P00197", "offeringId": "32957", "orderStatus": "CANCELED" } ] }