GET

List Sender Emails


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Retrieves a list of sender emails.

Endpoint
GET
https://www.wixapis.com/sender-emails/v1/sender-emails

Query Params
paging.limitintegerminimum 0maximum 100format int32

Number of items to load.


paging.cursorstringmaxLength 1000

Pointer to the next or previous page in the list of results. You can get the relevant cursor token from the pagingMetadata object in the previous call's response. Not relevant for the first request.


emailAddressstring

Provide a specific email address if you don't want to receive all email addresses you have.

Response Object
pagingMetadataPagingMetadata

Paging metadata.


senderEmailsArray <SenderEmail>maxItems 100

List of sender emails.

List Sender Emails Example 1
Request
cURL
curl 'https://www.wixapis.com/sender-emails/v1/sender-emails' \ -H 'Authorization: <AUTH>'
Response
JSON
{ "pagingMetadata": { "count": 2, "cursors": {}, "hasNext": false }, "senderEmails": [ { "id": "30057014-8ecc-4a1b-9c53-bcc7dd033bb5", "createdDate": "2024-01-01T00:00:00.000Z", "updatedDate": "2024-01-01T00:00:00.000Z", "emailAddress": "john.doe@example.com", "verified": true }, { "id": "0e516e19-a95b-49e0-a3ac-6ccca4e7512a", "createdDate": "2024-01-01T00:00:00.000Z", "updatedDate": "2024-01-01T00:00:00.000Z", "emailAddress": "jane.doe@example.com", "verified": false } ] }
Errors

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

Did this help?