Atlas
Admin — Integrations

Connect email delivery provider

Saves email delivery configuration for the current workspace. Supports SMTP, SendGrid, Postmark, and SES providers.

POST
/api/v1/admin/integrations/email

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "http://localhost:3001/api/v1/admin/integrations/email" \  -H "Content-Type: application/json" \  -d '{    "provider": "resend",    "senderAddress": "user@example.com",    "config": {      "host": "string",      "port": 1,      "username": "string",      "password": "string",      "tls": true    }  }'
{
  "message": "string",
  "provider": "string",
  "senderAddress": "string"
}
{
  "error": "string",
  "message": "string",
  "requestId": "string"
}
{
  "property1": null,
  "property2": null
}
{
  "error": "string",
  "message": "string",
  "requestId": "string"
}
Edit on GitHub

Last updated on