Send an email to a teammate

POST https://api.tamio.com/v2/teammates/send-email/{uuid}

Sends a templated email to a specific teammate using a predefined email template. Requires SMTP to be configured and sufficient email quota.

Path Parameters

uuid string*

UUID of the teammate to send the email to.

Body Parameters

email_template_id string*

UUID of the email template to use.

Responses

200 Email sent

Email sent

status integer
400 Validation or business-logic error
401 Missing or invalid API key
/teammates/send-email/{uuid}
1const response = await fetch("https://api.tamio.com/v2/teammates/send-email/{uuid}", {
2 method: "POST",
3 headers: {
4 "Authorization": "Bearer YOUR_API_KEY",
5 "Content-Type": "application/json"
6 },
7 body: JSON.stringify({
8 // ... request body
9 })
10});
11const data = await response.json();
Responses
{
  "status": 200
}