latestOpenAPI 3.1.02026-08-1014497184.0 KB
8b99dca11019
smtp
channel/email
List all SMTP integrations
Retrieves the current SMTP integration configurations for a specific integration type in the project. Returns configuration details and status information.
get/integrations/smtp
Response
OK
Example response
{
"data": [
{
"config": {
"from": {
"email": "notifications@example.com",
"name": "Example Notifications"
},
"host": "smtp.gmail.com",
"password": "your-app-password",
"port": 587,
"reply_to": {
"email": "support@example.com",
"name": "Example Support"
},
"security": "starttls",
"username": "user@example.com"
},
"id": "123",
"name": "<provider-name>"
}
],
"links": {
"first": "https://api.magicbell.com/v1/example",
"next": "https://api.magicbell.com/v1/example?page_next=abc",
"prev": null
}
}