Skip to content

List sender profiles

If you have questions regarding this API, please visit our API FAQ page.

A sender profile is a reusable From identity (name, From address and optional Reply-To). Its id is what you pass as welcome_sender_profile_id when creating or updating a contacts list.

The sending domain is resolved from the profile’s email. Deliverability still depends on that domain being verified — always check is_domain_verified before relying on a profile for sending.

Listing sender profiles

Make a GET request to https://webapi.inboxroad.com/api/v2/sender-profiles/ with a valid X-API-Key (see v2 authentication).

Terminal window
curl -X GET 'https://webapi.inboxroad.com/api/v2/sender-profiles/' \
-H 'X-API-Key: <your_token>' \
-H 'Content-Type: application/json'

Returns 200 with an array of sender profile objects (not paginated).

Query parameters

Param namePossible valuesDescription
orderingasc, descSort direction. Default desc.
order_byname, email, reply_to, smtp_name, created_atField to sort by. Default created_at.

Sender profile object

Field nameDescription
idUnique identifier of the sender profile (UUID).
nameHuman-readable sender name.
emailFrom address. Its domain determines the sending domain.
reply_toReply-To address, or null.
external_smtpCustom SMTP relay configuration, or null (see below).
is_domain_verifiedWhether the sending domain is verified. Sends are only reliable when true.

External SMTP object (external_smtp)

Present only for profiles that send through a customer-supplied relay. The password is never returned.

Field nameDescription
idUnique identifier of the SMTP configuration (UUID).
providerSMTP provider key (see allowed values below).
smtp_nameHuman-readable label for the relay.
hostSMTP host.
portSMTP port.
usernameSMTP username.
securityTransport security: none, tls, or ssl.
bounce_webhook_urlURL the provider posts bounce notifications to.
bounce_email_addressAddress that receives bounce notifications.

Example response

[
{
"id": "2b9a1c44-7f3e-4d21-9a0b-1c2d3e4f5a6b",
"name": "Acme Newsletter",
"email": "news@acme.com",
"reply_to": "support@acme.com",
"external_smtp": null,
"is_domain_verified": true
}
]

Possible response codes

Status codeDescription
200Sender profiles retrieved successfully.
401Unauthorized.