Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | Transact API Client ID |
developerAPIKey | yes | string | Transact API 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/getOfferingStatus -d developerAPIKey=somedeveloperkey -d clientID=someclientid -d offeringId=55591
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
offeringId | integer | Offering ID generated by the API |
offeringStatus | string | Status of the offering Pending | Approved | Not Approved |
{ "statusCode": "101", "statusDesc": "Ok", "offeringDetails": { "offeringId": "55591", "offeringStatus": "Pending" } }