post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getSubscriptionsforOffering
This method is used to retrieve the subscription document template details for a particular 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 once an offering is created(createOffering) |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getSubscriptionsforOffering
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d offeringId=55591
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
documentDetails | array | Returns the template details as an array |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"document details": [
{
"templateId": "55",
"templateName": "ABC Copmpany",
"templateKey": "XEXZP636F3A3A36",
"offeringId": "55591",
"templateUrl": "https://secure.echosign.com/document/cp/2AAABLblqZhBzGsYNJkrcVqF58XhP0Myj3z0BuEPP2xT34rsr05gCx2se4fEFrJLxxSKvz6HwSiUshzEGc*/document.pdf",
"createdDate": "2016-02-06 09:11:45"
}
]
}