menu
Get a mail server
Returns a single email server configuration. The SMTP password is masked - secrets are write-only across the v2 API.
Endpoint
GET https://api.sendstreak.com/v2/accounts/{accountId}/mail-servers/{mailServerId}
All v2 endpoints require a bearer token - see Authentication.
Path parameters
| Parameter | Type | Description |
|---|---|---|
accountId | string | The account the request is scoped to. |
mailServerId | string |
Response
The mail server (credentials masked).
{
"_id": "665f0a2b1c9d440012ab34cd",
"serviceType": "awsses",
"host": "smtp.example.com",
"port": 587,
"secure": false,
"requireTLS": false,
"user": "smtp-user",
"password": ""
}
Errors
| Status | Description |
|---|---|
401 | Missing or invalid token, or the token is not authorized for this account/user. |
404 | The requested resource does not exist. |
See Errors and rate limits for what error responses look like.
Curl example
curl --location --request GET 'https://api.sendstreak.com/v2/accounts/YOUR_ACCOUNT_ID/mail-servers/YOUR_MAIL_SERVER_ID' \
--header 'Authorization: Bearer YOUR_API_TOKEN'