Skip to main content
PATCH
/
api
/
v1
/
subscribers
/
{email}
{
  "success": true,
  "subscriber": {
    "id": "sub_abc123",
    "email": "[email protected]",
    "firstName": "Jane",
    "lastName": "Doe",
    "status": "active",
    "tags": ["customer", "vip"],
    "customAttributes": { "plan": "pro" },
    "createdAt": "2024-01-15T10:30:00Z",
    "updatedAt": "2024-01-16T14:20:00Z"
  }
}
Update a subscriber’s first name, last name, status, tags, or custom attributes.

Path Parameters

email
string
required
Subscriber email (URL encoded)

Request Body

firstName
string
First name
lastName
string
Last name
status
string
Status: active or unsubscribed
tags
string[]
Replace all tags with this array
customAttributes
object
Replace custom attributes
curl -X PATCH "https://api.sequenzy.com/api/v1/subscribers/user%40sequenzy.com" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "firstName": "Jane",
    "status": "active",
    "tags": ["customer", "vip"]
  }'

Responses

{
  "success": true,
  "subscriber": {
    "id": "sub_abc123",
    "email": "[email protected]",
    "firstName": "Jane",
    "lastName": "Doe",
    "status": "active",
    "tags": ["customer", "vip"],
    "customAttributes": { "plan": "pro" },
    "createdAt": "2024-01-15T10:30:00Z",
    "updatedAt": "2024-01-16T14:20:00Z"
  }
}