Queues a new email notification to be sent.
Request Information
URI Parameters :
None.
Body Parameters :
email_notification| Name | Description | Type | Additional 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
{
"id": "f1551cd4-695d-4442-b39c-8ecbc92b4b2b",
"communication_id": "dd7e9bc9-92d2-4dbd-a83f-c0672568e35e",
"db_table_id": "a186dfa8-ec10-4c93-810b-a7bf76b3a702",
"id_in_table": "99cf1be8-278b-430e-9109-af6694d10100",
"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:11:50.0841389+00:00"
}
application/xml, text/xml
<email_notification xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <communication_id>dd7e9bc9-92d2-4dbd-a83f-c0672568e35e</communication_id> <date_create>2026-09-16T10:11:50.084Z</date_create> <db_table_id>a186dfa8-ec10-4c93-810b-a7bf76b3a702</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>f1551cd4-695d-4442-b39c-8ecbc92b4b2b</id> <id_in_table>99cf1be8-278b-430e-9109-af6694d10100</id_in_table> <type>sample string 10</type> </email_notification>
Response Information
Resource Description :
IHttpActionResult containing the created email notification.
email_notification| Name | Description | Type | Additional 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
{
"id": "8b5696c0-2b91-4116-b2e2-97e5e447565a",
"communication_id": "4d39aaea-fce9-406d-a4dd-4e5832f3e809",
"db_table_id": "342f5f5f-bf70-4864-b0dc-447c8c7be6df",
"id_in_table": "7e3db3ef-d805-4a5d-8d17-7ed54cbedd68",
"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:11:50.0973771+00:00"
}
application/xml, text/xml
<email_notification xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <communication_id>4d39aaea-fce9-406d-a4dd-4e5832f3e809</communication_id> <date_create>2026-09-16T10:11:50.097Z</date_create> <db_table_id>342f5f5f-bf70-4864-b0dc-447c8c7be6df</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>8b5696c0-2b91-4116-b2e2-97e5e447565a</id> <id_in_table>7e3db3ef-d805-4a5d-8d17-7ed54cbedd68</id_in_table> <type>sample string 10</type> </email_notification>