Subscribers
Update subscriber
Updates a subscriber's first name, last name, status, tags, or custom attributes. Setting status to unsubscribed performs the full unsubscribe workflow, including list unsubscription and sequence cancellation.
patch/subscribers/{email}
Path parameters
emailstring required
URL-encoded email address
Request body
Example request
{
"firstName": "Jane",
"lastName": "Smith",
"phone": "+15551234567",
"tags": [
"premium",
"vip"
]
}Response
Subscriber updated
Example response
{
"success": true,
"subscriber": {
"id": "sub_abc123",
"email": "user@example.com",
"externalId": "user_123",
"firstName": "John",
"lastName": "Doe",
"phone": "+15551234567",
"smsStatus": "subscribed",
"status": "active",
"emailProvider": "gmail",
"tags": [
"premium",
"newsletter"
],
"customAttributes": {
"plan": "pro",
"signupSource": "website"
}
}
}