POST /account/notifications/test-email
Send the alert email template to one address with sample data, so a typo'd finance alias is caught by a human instead of failing silently when a real alert fires.
TypeScript SDKThe npm client, generated from the API spec.Python SDKThe PyPI client, sync and async.
| Method | Path |
|---|---|
| POST | /v1/account/notifications/test-email |
curl -X POST "https://api.ellipsis.dev/v1/account/notifications/test-email" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"email":"..."}'import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
result = client.account.notifications.test_email(
"...",
)
print(result)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
const result = await client.account.notifications.testEmail({ email: '...' });
console.log(result);Request
Example request body
{
"email": "string"
}
Body parameters
emailstringrequired
Response
Example response · 200
{
"ok": true
}