post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getOfferingStatus
This method is used to retrieve the approval status of a specific offering.
Request Parameters
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) |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getOfferingStatus
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d offeringId=55591
Response Parameters
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 |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"offeringDetails":
{
"offeringId": "55591",
"offeringStatus": "Pending"
}
}