Subscribers
Update subscriber by external ID path
Compatibility route for external IDs that do not contain path separators. Use /subscribers/external?externalId=... for IDs containing slashes.
patch/subscribers/external/{externalId}
Path parameters
externalIdstring required
URL-encoded external ID without path separators
Request body
Example request
{
"phone": "+15551234567"
}Response
Subscriber updated
Example response
{
"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"
}
}
}