getOfferingDetails

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
offeringIdyesstringOffering ID that is generated by the API when an Offering is created (createOffering)

Sample Request

curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getOfferingDetails
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d offeringId=59249

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
Offering Purchased DetailsstringDetails of the matched offer trades purchased amount as an array

Sample Response

{
    "statusCode": "101",
    "statusDesc": "Ok",
    "Offering purchased details": [
        {
            "committedAmount": "20821.762404",
            "fundedAmount": "3162.985000",
            "pendingAmount": "17658.777404",
            "escrowAccountNumber": "484535498714"
        }
    ]
}

Test it Yourself!

Language
Click Try It! to start a request and see the response here!