Update a Subscriber by Email

Update the details of a subscriber by searching with their email address within a specific list. This method is ideal when the subscriber UID is not known in advance.

πŸ”„ Update a Subscriber by Email

Search for a subscriber using their email, then update their details with a follow-up PUT request.


πŸ”Ή HTTP Request

Step 1: Search by email

GET API-URL/lists/LIST-UNIQUE-ID/subscribers/search-by-email

Step 2: Update using subscriber UID

PUT API-URL/lists/LIST-UNIQUE-ID/subscribers/SUBSCRIBER-UNIQUE-ID

πŸ”Έ URL Segments

Segment
Required
Description

LIST-UNIQUE-ID

Yes

List unique identifier

SUBSCRIBER-UNIQUE-ID

Yes

Subscriber UID returned from search


πŸ”Ž GET/PUT Parameters

Parameter
Type
Required
Description

EMAIL

string

Yes

Email address to search

data

array

Yes

Array of fields {name => value} to update


πŸ” Authorization Header


πŸ’» PHP Example


πŸ“¦ Sample JSON Response