post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/deleteOffering
This method deletes an offering. This is a virtual delete. The offering ID is required as a request parameter to delete the 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) of the offering that is to be deleted |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/deleteOffering
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d offeringId=41994
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
offeringDetails | string | Returns the delete offering details as an array |
Sample Response
{
"statusCode":"101",
"statusDesc":"Ok",
"offeringDetails":"41994"
}