Delivers one transactional email through the caller org's own provider…
Delivers one transactional email through the caller org's own provider credential.
POST /v1/notify/send/email
| Address | https://api.hanzo.ai/v1/notify/send/email |
| Method | POST |
| Operation | post_notify_send_email |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Delivers one transactional email through the caller org's own provider credential.
It is the channel-pinned form of the generic send: identical in every respect except that the channel is fixed to email, OVERRIDING whatever the body names — so a body that says sms still goes out as mail. The provider is the org's own email credential from KMS (Twilio Email, then SMTP), resolved for the validated principal's org; an unauthenticated caller gets 401. Subject is carried on the email channel only.
Request
9 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
body | body | string | — | Body is the message text, sent verbatim when present — the no-template path. |
channel | body | string | — | Channel selects the delivery channel, sms or email. |
event | body | string | — | Event is the event name, which doubles as the template id when TemplateID is empty — the IAM OTP path sends event=iam.otp_sent and nothing else. |
provider | body | string | — | Provider pins a provider service name (twilio, plivo, twilio_email, mail). |
subject | body | string | — | Subject is the message subject, carried on the email channel only. |
sync | body | string | — | Sync must be exactly "true": delivery here is synchronous, and anything else answers 503 because the queue plane that would run an async dispatch is owned… |
template_id | body | string | — | TemplateID selects a built-in template when Body is empty. |
template_vars | body | any | — | TemplateVars carries the values the selected template renders against, as a raw JSON object. |
to | body | string[] | — | To is the destination address per recipient — a phone number for sms, an email address for email. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | ok |
200 body — 1 field.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
(body) | body | any | yes |
Failure carries the platform error shape — see Errors.
Examples
hanzo notify send emailimport { Configuration, NotifyApi } from 'hanzoai';
const api = new NotifyApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postNotifySendEmail({ body: "<body>", channel: "<channel>" });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import NotifyApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = NotifyApi(client).post_notify_send_email(body="<body>", channel="<channel>")cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.NotifyAPI.PostNotifySendEmail(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, notify_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = notify_api::post_notify_send_email(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.NotifyApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new NotifyApi(client).postNotifySendEmail();curl -X POST https://api.hanzo.ai/v1/notify/send/email \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"body": "<body>",
"channel": "<channel>"
}'The door reaches notify through the notify tool, which names its 4 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "get_notify_health"
}
}
}'How is this guide?