Skip to main content
GET
/
v1
/
email
/
smtp
Get SMTP Config
curl --request GET \
  --url https://api.oviond.com/v1/email/smtp \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "<string>",
    "account_id": "<string>",
    "host": "<string>",
    "port": 123,
    "username": "<string>",
    "secure": true,
    "from_email": "<string>",
    "from_name": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

SMTP config row

success
enum<boolean>
required
Available options:
true
data
object
required