Parameter | Required | Type | Description |
---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
securityID | yes | string | Security ID for the PPEX/ATS |
issuerID | yes | integer | Issuer ID |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getOrderBook
-d clientID=someClient Id
-d developerAPIKey=somedeveloperAPIKey
-d securityID= securityID
-d issuerID= issuerID
Parameter | Type | Description |
---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
orderDetailsAll | string | Get security order details array |
{
"statusCode": "101",
"statusDesc": "Ok",
"orderDetailsAll":"[{
"security_name":"Instacart",
"Action":"Buy",
"number_shares":18",
"share_per_price":"RFQ",
"total_amount":"RFQ",
},
{"security_name":"Instacart",
"Action":"Buy",
"number_shares":33",
"share_per_price":"RFQ",
"total_amount":"RFQ",
},
{"security_name":"Instacart",
"Action":"Sell",
"number_shares":15",
"share_per_price":"15.0",
"total_amount":"225.00",
}]"
}