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

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
offeringIdyesstringOffering 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.
templateIdyesstringTemplate ID that is generated by the API once a subscription document is added(addSubscriptionsforOffering)
templatenameyesstringThe name of the replacement template as it is titled in Docusign or Echosign.
updatedIpAddressnostringIP 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

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
offeringIdstringOffering ID generated by the API
templateIDstringTemplate ID generated by the API
templateNamestringUploaded template name

Sample Response

{
  "statusCode": "101",
  "statusDesc": "Ok",
  "document details": [
    {
      "offeringId": "55591",
      "templateId": "62801",
      "templatename": "ABC Company"
    }
  ]

Test it Yourself!

Language
Click Try It! to start a request and see the response here!