Workspace/Overview

Settings

API Keys

Manage API access

Webhooks

Event subscriptions

Security

2FA & Passwords

Billing

Plans & Invoices

API Keys

Use these keys to authenticate your API requests from OmniFlow, Shop, or N8N. Keep them secret, they grant full send/receive access to your MailSaaS tenant.

Production Key (Shopify / OmniFlow)

sk_live_aB9x2Z................................7hQ

Last used: 2m ago

API Integration Demo

Trigger emails using your custom templates from anywhere in your stack.

cURLNode.jsPython
Send Transactional Email via API Endpoint
curl -X POST https://mail.conectaai.cl/api/send \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{
"to": "nuevo-usuario@gmail.com",
"template_id": "shop_bienvenida",
"variables": { "name": "Juan", "pass": "1234" }
}'
Only HTTP POST allowed. Body payload is strictly evaluated against your workspace template variables schema.