Subscribers
Subscribers v3 endpoints
Subscribers are the core of your email marketing. These endpoints allow you to manage your subscriber list, update their information, and track their engagement with your content.
List subscribers
Returns a list of your subscribers with filtering and search capabilities.
Endpoint
GET /v3/subscribers
Parameters
Your API secret key
The page of results being requested. Default value is 1
. Each page of results will contain up to 50 subscribers.
Filter subscribers added on or after this date (format yyyy-mm-dd
)
Filter subscribers added on or before this date (format yyyy-mm-dd
)
Filter subscribers who have been updated after this date (format yyyy-mm-dd
)
Filter subscribers who have been updated before this date (format yyyy-mm-dd
)
Sort order for results (asc
or desc
)
Field to sort by. Supports cancelled_at
only.
Search subscribers by email address
View a single subscriber
Returns data for a single subscriber.
Endpoint
GET /v3/subscribers/#{subscriber_id}
Parameters
Your API secret key
The ID of the subscriber you want to retrieve
Subscribers are the core of your email marketing. These endpoints allow you to manage your subscriber list, update their information, and track their engagement with your content.
Update subscriber
Updates the information for a single subscriber.
NOTE: The API response returned when updating custom fields is dependent on the number of custom fields in the request. A maximum of 140 custom fields are allowed. Requests that exceed this limit will return a response of 400
.
Endpoint
PUT /v3/subscribers/#{subscriber_id}
Parameters
Your API secret key
The ID of the subscriber you want to update
Updated first name for the subscriber
Updated email address for the subscriber
Updated custom field(s) for your subscriber as object of key/value pairs. The custom field(s) must exist before you can use it here.
Unsubscribe subscriber
Unsubscribe an email address from all your forms and sequences.
Endpoint
PUT /v3/unsubscribe
Parameters
Your API secret key
Subscriber email address
List tags for a subscriber
Lists all the tags for a subscriber.
Endpoint
GET /v3/subscribers/#{subscriber_id}/tags
Parameters
Your account API key
The ID of the subscriber whose tags you want to retrieve