Electronic Delivery
The electronicDelivery
payload specifies the account holder's preferences for receiving communications and documents electronically. Each field indicates whether a specific type of communication will be sent electronically (true
) or not (false
). If any field is set to true
, a valid email address is required to enable electronic delivery.
Payload Structure with Validation Rules
- Schema
- Example
Field Name | Type | Description | Values Accepted |
---|---|---|---|
email | String | The email address to receive electronic communications. | Must be a valid email address. Required if any other field is true . |
statements | Boolean | To receive account statements electronically. | true or false |
confirms | Boolean | To receive trade confirmations electronically. | true or false |
stonexCommunications | Boolean | To receive general communications electronically. | true or false |
investorCommunications | Boolean | To receive investor-related communications electronically. | true or false |
prospectus | Boolean | To receive prospectuses electronically. | true or false |
taxDocuments | Boolean | To receive tax documents electronically. | true or false |
{
"electronicDelivery": {
"email": "[email protected]",
"statements": false,
"confirms": true,
"stonexCommunications": true,
"investorCommunications": true,
"prospectus": true,
"taxDocuments": false
}
}
Any validation failure will trigger an error message and halt the Account Creation or Updation Process.
Error Scenarios
For any validation failures, refer Standard Errors and Account Related Errors.