Skip to main content
GET
/
email-accounts
/
{id}
Get an email account
curl --request GET \
  --url https://api.reply.io/v3/email-accounts/{id} \
  --header 'X-API-Key: <api-key>'
{
  "id": 1,
  "senderName": "John Doe",
  "email": "user@example.com",
  "signature": "Best regards,\nJohn Doe\nSales Manager",
  "dailyLimit": 1000,
  "smtpHost": "smtp.example.com",
  "smtpPort": 465,
  "smtpPassword": "yourSmtpPassword123",
  "smtpSsl": true,
  "imapHost": "imap.example.com",
  "imapPort": 993,
  "imapPassword": "yourImapPassword123",
  "imapSsl": true,
  "dailyGoal": 50,
  "dailyIncrement": 5,
  "randomizedDailyVolumeMin": 10,
  "randomizedDailyVolumeMax": 20,
  "folder": "Marketing"
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Path Parameters

id
string
required

Email Account Id

Response

Email account details retrieved successfully

senderName
string
required

The name that will be displayed as the sender in email recipients' inboxes

email
string<email>
required

The email address

signature
string
required

Email signature

dailyLimit
integer
required

The maximum number of emails you can send per day

Required range: x >= 1
smtpHost
string
required

The hostname or IP address of the Simple Mail Transfer Protocol (SMTP) server used for sending emails

smtpPort
integer
required

The port number used for communication with the SMTP server (typically 465 for SMTP with SSL/TLS encryption)

Required range: 1 <= x <= 65535
smtpPassword
string
required

The password for the email address used for sending emails

imapHost
string
required

The hostname or IP address of the Internet Message Access Protocol (IMAP) server used for receiving emails

imapPort
integer
required

The port number used for communication with the IMAP server (typically 993 for IMAP with SSL/TLS encryption)

Required range: 1 <= x <= 65535
imapPassword
string
required

The password for the email address used for receiving emails

id
integer

Unique identifier for the email account

smtpSsl
boolean
default:true

This option controls whether SSL is used for the SMTP connection

imapSsl
boolean
default:true

This option controls whether SSL is used for the IMAP connection

dailyGoal
integer

Warmup daily goal - target number of emails to send per day during warmup

Required range: x >= 1
dailyIncrement
integer

Warmup daily increment - daily increase in email volume during warmup period

Required range: x >= 1
randomizedDailyVolumeMin
integer

Minimum value for randomized daily volume

Required range: x >= 0
randomizedDailyVolumeMax
integer

Maximum value for randomized daily volume

Required range: x >= 0
folder
string

Folder name for organizing email accounts