Skip to main content
PUT

Overview

Update a subscriber’s profile information including their name, phone number, status, custom fields, and group memberships. Only include the fields you want to update.

Authentication

string
required
Bearer token. Format: Bearer YOUR_API_KEY

Path Parameters

string
required
The unique identifier (UUID) of the subscriber to update.Example: 550e8400-e29b-41d4-a716-446655440000

Request Body

Only include the fields you want to update. Unspecified fields will remain unchanged.
string
Updated first name.
string
Updated last name.
string
Updated phone number.
string
Updated status. Options:
  • active - Subscriber can receive emails
  • unsubscribed - Subscriber has opted out
array
Array of group UUIDs. This will replace all current group memberships.
object
Object containing custom field key-value pairs. Merges with existing custom fields.

Response

boolean
Indicates if the update was successful
object
The updated subscriber object

Examples

Unsubscribe a Subscriber

Add to Groups

Setting group_ids will replace all current group memberships. To add a subscriber to additional groups without removing existing ones, first fetch the current groups and include them in the array.