DocsAPI ReferenceEmailer/bff/emailer/setup-smtp
postEmailerAdmin BFF

/bff/emailer/setup-smtp

Saves SMTP server configuration and sends a test email to verify connectivity.

EmailerpostBffEmailerSetup-smtp

Parameters

6 body

6 total
Body · 6
testAddressstringRequired

Email address to send a test message to.

hoststringRequired

SMTP server hostname.

portstringRequired

SMTP server port.

fromstringRequired

Sender email address (From header).

authUserstringRequired

SMTP authentication username.

authPasswordstringRequired

SMTP authentication password.

Request

POST /bff/emailer/setup-smtp

post
curl -X POST "https://api.bizkithub.com/bff/emailer/setup-smtp" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "testAddress": "test@example.com",
  "host": "smtp.example.com",
  "port": "587",
  "from": "noreply@example.com",
  "authUser": "example_authUser",
  "authPassword": "example_authPassword"
}'

Response

JSON payload

{
  "success": true
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key