Email Check
Validates email credentials and connection settings.
POST /api/agents/email/check
Request Body
{
"site_id": "123e4567-e89b-12d3-a456-426614174000",
"use_saved_credentials": true
}| Parameter | Type | Required | Description |
|---|---|---|---|
site_id | string | No | The UUID of the site (if using saved credentials). |
email | string | No | Email address (if manual). |
password | string | No | Password (if manual). |
use_saved_credentials | boolean | No | Whether to use saved site credentials (default: true). |
incoming_server | string | No | IMAP server host. |
incoming_port | number | No | IMAP server port. |
outgoing_server | string | No | SMTP server host. |
outgoing_port | number | No | SMTP server port. |
tls | boolean | No | Use TLS (default: true). |
skip_smtp | boolean | No | Skip SMTP check (default: false). |
Response
Returns the connection status for IMAP and SMTP.
Last updated on