post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getSettlementStatus
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 |
tradeID | yes | string | Matched Trade ID from PPEX |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getSettlementStatus
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d tradeID=77654
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
tradeDetails | string | Array of trade details |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"tradeDetails": {
"memberid":123,
"issuerid":123,
"tradeID":1235,
"tradeStatus":"SETTLED"
}
}