Queues (creates) an email notification to be sent.

Request Information

URI Parameters :

None.

Body Parameters :

email_notification
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
communication_id

Foreign key of the communication rule that generated this email.

globally unique identifier
db_table_id

Identifier of the database table that belongs to (the record this email was generated for).

globally unique identifier
id_in_table

Primary key of the record (in the table identified by ) this email was generated for.

globally unique identifier
email_to

Resolved "To" recipient(s) of the email.

string
email_cc

Resolved "Cc" recipient(s) of the email.

string
email_bcc

Resolved "Bcc" recipient(s) of the email.

string
email_subject

Resolved subject of the sent email.

string
email_body

Resolved body of the sent email.

string
type

Kind of notification this entry represents.

string
date_create

Date and time this email was generated/sent.

date

Request Formats :

application/json, text/json

Sample:
{
  "id": "8ff7c9f6-b071-431b-b59c-f5ed7f69f480",
  "communication_id": "ec462834-001d-468d-9307-d59c4a8a7bff",
  "db_table_id": "0260543b-7c7f-4f21-b56a-58e60aba17c2",
  "id_in_table": "9f969d12-81d7-42a1-b60a-561a395e9afd",
  "email_to": "sample string 5",
  "email_cc": "sample string 6",
  "email_bcc": "sample string 7",
  "email_subject": "sample string 8",
  "email_body": "sample string 9",
  "type": "sample string 10",
  "date_create": "2026-09-16T10:12:29.3185795+00:00"
}

application/xml, text/xml

Sample:
<email_notification xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <communication_id>ec462834-001d-468d-9307-d59c4a8a7bff</communication_id>
  <date_create>2026-09-16T10:12:29.318Z</date_create>
  <db_table_id>0260543b-7c7f-4f21-b56a-58e60aba17c2</db_table_id>
  <email_bcc>sample string 7</email_bcc>
  <email_body>sample string 9</email_body>
  <email_cc>sample string 6</email_cc>
  <email_subject>sample string 8</email_subject>
  <email_to>sample string 5</email_to>
  <id>8ff7c9f6-b071-431b-b59c-f5ed7f69f480</id>
  <id_in_table>9f969d12-81d7-42a1-b60a-561a395e9afd</id_in_table>
  <type>sample string 10</type>
</email_notification>

Response Information

Resource Description :

IHttpActionResult containing the saved email notification.

email_notification
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
communication_id

Foreign key of the communication rule that generated this email.

globally unique identifier
db_table_id

Identifier of the database table that belongs to (the record this email was generated for).

globally unique identifier
id_in_table

Primary key of the record (in the table identified by ) this email was generated for.

globally unique identifier
email_to

Resolved "To" recipient(s) of the email.

string
email_cc

Resolved "Cc" recipient(s) of the email.

string
email_bcc

Resolved "Bcc" recipient(s) of the email.

string
email_subject

Resolved subject of the sent email.

string
email_body

Resolved body of the sent email.

string
type

Kind of notification this entry represents.

string
date_create

Date and time this email was generated/sent.

date

Response Formats

application/json, text/json

Sample:
{
  "id": "e3655451-0131-48a9-a200-d7af448d8749",
  "communication_id": "ef382ffd-090a-4b9b-a6b7-09a2d3cae7fd",
  "db_table_id": "623b8a51-c12c-4497-afa2-fea24c88a116",
  "id_in_table": "8d71a15e-4946-4544-88ba-44f8c755ab54",
  "email_to": "sample string 5",
  "email_cc": "sample string 6",
  "email_bcc": "sample string 7",
  "email_subject": "sample string 8",
  "email_body": "sample string 9",
  "type": "sample string 10",
  "date_create": "2026-09-16T10:12:29.3185795+00:00"
}

application/xml, text/xml

Sample:
<email_notification xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <communication_id>ef382ffd-090a-4b9b-a6b7-09a2d3cae7fd</communication_id>
  <date_create>2026-09-16T10:12:29.318Z</date_create>
  <db_table_id>623b8a51-c12c-4497-afa2-fea24c88a116</db_table_id>
  <email_bcc>sample string 7</email_bcc>
  <email_body>sample string 9</email_body>
  <email_cc>sample string 6</email_cc>
  <email_subject>sample string 8</email_subject>
  <email_to>sample string 5</email_to>
  <id>e3655451-0131-48a9-a200-d7af448d8749</id>
  <id_in_table>8d71a15e-4946-4544-88ba-44f8c755ab54</id_in_table>
  <type>sample string 10</type>
</email_notification>