Parameter | Required | Type | Description |
---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
tradeID | yes | string | Matched Trade ID from PPEX |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getSettlementStatus
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d tradeID=77654
Parameter | Type | Description |
---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
tradeDetails | string | Array of trade details |
{
"statusCode": "101",
"statusDesc": "Ok",
"tradeDetails": {
"memberid":123,
"issuerid":123,
"tradeID":1235,
"tradeStatus":"SETTLED"
}
}