Parameter | Required | Type | Description |
---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
offeringId | yes | string | Offering ID that is generated by the API when an Offering is created (createOffering) |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getOfferingDetails
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d offeringId=59249
Parameter | Type | Description |
---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
Offering Purchased Details | string | Details of the matched offer trades purchased amount as an array |
{
"statusCode": "101",
"statusDesc": "Ok",
"Offering purchased details": [
{
"committedAmount": "20821.762404",
"fundedAmount": "3162.985000",
"pendingAmount": "17658.777404",
"escrowAccountNumber": "484535498714"
}
]
}