POST

Resolve Actual From Address


Deprecation Warning

This method will be deprecated on September 30, 2025.
Replace with Identify Sender Address.

Checks if the sender's email address will be used as from-address or replaced (not related to current sender details).

Authentication

You can only call this method when authenticated as a Wix app or Wix user identity.

Permissions
Access Verticals by Automations
Set Up Automations
Manage Email Marketing
Manage Stores
Learn more about app permissions.
Endpoint
POST
https://www.wixapis.com/email-marketing/v1/sender-details/actual-from-address

Body Params
fromAddressstringRequiredformat EMAIL

User's provided address from which to send email marketing campaign.

Response Object
actualFromAddressstringformat EMAIL

Actual from-address that will be used for email distribution.

Resolve Actual From Address Example 1
Request
cURL
curl -X POST 'https://www.wixapis.com/email-marketing/v1/sender-details/actual-from-address' \ --data-binary '{ "fromAddress": "john.doe@gmail.com" }' \ -H 'Content-Type: application/json' \ -H 'Authorization: <AUTH>'
Response
JSON
{ "actualFromAddress": "john.doe@pb02.ascendbywix.com" }
Errors

This method doesn't return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?