POST
Emails.Add
Create an email/message draft row. This stores the message data; use send-specific routes when the account should actually send email. Business side effects follow this function workflow. This route does not add a separate app-level automation_event or socket_event unless those fields are returned in the JSON response.
Permissions
- User must be logged in with a valid bearer token.
- Returned or changed records are limited by the user permissions, team access, folder access, and account settings.
Action
- Creates a Emails record or sends the requested data after validation.
Push Service
No push is sent because this function only reads data or returns helper information.
Automation
No automation is run for this function.
Special Instructions
- Send the bearer token on protected calls with Authorization: Bearer YOUR TOKEN.
- Send parameters as POST body fields exactly as documented.
- Send date/time values in UTC Y-m-d H:i:s format when a date or datetime field is used.
Required Parameters
| Name | Type | Sample | Explanation |
|---|---|---|---|
emailpost | [email protected] | Recipient email address. |
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
subjectpost | string | Invoice | Email subject. If omitted, the message is saved without a subject. |
messagepost | string | Hello | Email body/message content. |
client_idpost | int | 123 | Connects the draft to a customer. |
filepost | json|string | [] | Attachment metadata when already uploaded. |
fatherpost | int | 500 | Connects this draft as a reply/thread child. |
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/Emails.Add",
"method": "POST",
"body": {
"email": "[email protected]",
"subject": "Invoice",
"message": "Hello"
},
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Emails.Add",
"url_domain": "https:\/\/{domain}\/app\/Emails.Add"
}Endpoint
POST /app/Emails.Add
POST https://{user}.bull36.com/app/Emails.Add
POST https://{domain}/app/Emails.AddSample Output
{
"success": 1,
"id": "501",
"message": "Record added successfully."
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({});
// Fill body fields from the Sample Request JSON above.
const res = await fetch('/app/Emails.Add', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
const data = await res.json();
console.log(data);Error Example
{
"success": 0,
"message": "No supported fields were sent."
}