post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/notifySettlement
Log in to see full request history
Request Parameters
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 |
Sample Request
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
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
tradeStatus | string | Status as entered from the tradeStatus |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"tradeStatus": "Settled"
}
Test it Yourself!
Response