PATCH

Update Sender Details


Deprecated

This method has been replaced with Get Or Create Sender Email, and will be removed on September 30, 2025.

Updates sender details (only provided fields will be updated).

If from_email is changed - a verification code will be sent to new email address. If verification is needed, a verification email will be sent to the user, and verification_needed will return true.

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
Learn more about app permissions.
Endpoint
PATCH
https://www.wixapis.com/email-marketing/v1/sender-details

Body Params
senderDetailsSenderDetailsRequired

New sender details.

Response Object
verificationNeededboolean

Whether email address needs verification.

Update Sender Details Example 1
Request
cURL
curl -X PATCH 'https://www.wixapis.com/email-marketing/v1/sender-details' \ --data-binary '{ "senderDetails": { "fromName": "Jack", "fromEmail": "jack@email.com" } }' \ -H 'Content-Type: application/json' \ -H 'Authorization: <AUTH>'
Response
JSON
{ "verificationNeeded": true }
Errors

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

Did this help?