post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/updateSubscriptionsforOffering
This method is used to update a Subscription Document for the offering. The template is set up in either Docusign or Echosign, allowing investor data to be auto-populated when the documents are sent. The existing template will be replaced with the new template.
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) for the offering that the subscription document template is to be replaced. |
templateId | yes | string | Template ID that is generated by the API once a subscription document is added(addSubscriptionsforOffering) |
templatename | yes | string | The name of the replacement template as it is titled in Docusign or Echosign. |
updatedIpAddress | no | string | IP Address of the updateSubscriptionsforOffering method call. |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/updateSubscriptionsforOffering
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d offeringId=55682
-d templateId=55593
-d templatename=sample document
-d updatedIpAddress=10.0.0.9
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
offeringId | string | Offering ID generated by the API |
templateID | string | Template ID generated by the API |
templateName | string | Uploaded template name |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"document details": [
{
"offeringId": "55591",
"templateId": "62801",
"templatename": "ABC Company"
}
]