post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/deleteSubscriptionsforOffering
This method is used to delete a Subscription Document from the offering. The templateId is required as a request parameter to delete.
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
templateId | yes | string | Template ID that is generated by the API once a subscription document is added (addSubscriptionsforOffering) of the document to be deleted |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/deleteSubscriptionsforOffering
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d templateId=55591
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
documentDetails | string | Success Message |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"document details": "Template deleted successfully"
}