Parameter | Required | Type | Description |
---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
memberid | yes | string | PPEX Member ID |
issuerid | yes | string | Issuer ID |
tradeID | yes | string | Trade ID (same as Match ID) |
tradeStatus | yes | string | Settled/Canceled |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/notifySettlement
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d memberid=123456
-d issuerid=489651
-d tradeID=5474684246
-d tradeStatus=Settled
Parameter | Type | Description |
---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
tradeStatus | string | Status as entered from the tradeStatus |
{
"statusCode": "101",
"statusDesc": "Ok",
"tradeStatus": "Settled"
}