2019.2

Table Of Contents
JSON Identifier List (with Email Parameters)
Describes a list of identifiers for multiple data entities (specifically data record entities), along
with additional parameters used specifically in an content creation operation for email.
Structure
The structure consists of an object with the following name/value pairs:
l identifiers an array of data record entity identifiers (type of number)
l host the network address or name of the SMTP mail server through which emails will
be sent. If required, a server port value can also be specified (type of string)
l user the user name to authenticate with (if using authentication) (type of string)
l password the password to authenticate with (if using authentication) (type of string)
l sender the email address to be shown as the sender in the email output (type of string)
l useAuth parameter to specify if authentication is to be used with the mail server (type of
boolean)
l useStartTLS parameter to specify if Transport Layer Security (TLS) is to be used when
sending emails (type of boolean)
l useSender parameter to specify if the sender address will be used as the receiver
address for all emails in the output (type of boolean)
l attachWebPage parameter to specify if a single HTML web page (with embedded
resources) of the Web context should also be created and attached to the email output
(type of boolean)
l attachPdfPage parameter to specify if a PDF of the Print context should also be created
and attached to the email output (type of boolean)
Example
The following is an example of this structure:
{
"identifiers": [
12345,
23456
],
"host": "mail.company.com:587",
"user": "johns",
"password": "password5",
Page 73