getOfferingStatus

This method is used to retrieve the approval status of a specific offering.

Log in to see full request history

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/getOfferingStatus -d developerAPIKey=somedeveloperkey -d clientID=someclientid -d offeringId=55591

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
offeringIdintegerOffering ID generated by the API
offeringStatusstringStatus of the offering Pending | Approved | Not Approved

Sample Response

{
    "statusCode": "101",
    "statusDesc": "Ok",
    "offeringDetails": 
  {
        "offeringId": "55591",
        "offeringStatus": "Pending"
    }
}

Test it Yourself!

Body Params
string
required
string
required
string
required
Language
Click Try It! to start a request and see the response here!