Actions71
- Settings Actions
- Subscribers Actions
- Create Subscriber
- Manage Subscriber Lists By Query
- Get Subscribers
- Delete Subscriber By List
- Get Subscriber By Id
- Update Subscriber By Id
- Delete Subscriber By Id
- Manage Subscriber Lists
- Manage Subscriber List By Id
- Manage Blocklist By Subscriber List
- Manage Blocklist Subscribers By Id
- Export Subscriber Data By ID
- Get Subscriber Bounces By Id
- Delete Subscriber Bounces By Id
- Subscriber Send Optin By Id
- Delete Subscriber By Query
- Blocklist Subscribers Query
- Bounces Actions
- Import Actions
- Campaigns Actions
- Update Preview Campaign By Id
- Get Campaigns
- Create Campaign
- Get Campaign By Id
- Update Campaign By Id
- Delete Campaign By Id
- Get Running Campaign Stats
- Get Campaign Analytics
- Preview Campaign By Id
- Preview Campaign Text By Id
- Update Campaign Status By Id
- Update Campaign Archive By Id
- Create Campaign Content By Id
- Test Campaign By Id
- Media Actions
- Templates Actions
- Public Actions
- Miscellaneous Actions
- Admin Actions
- Logs Actions
- Lists Actions
- Transactional Actions
- Maintenance Actions
Overview
This node allows users to create a new subscriber in the Listmonk system. It is useful for scenarios where you want to add subscribers to your mailing lists programmatically, such as during user sign-up processes or importing subscriber data from other systems. For example, you can create a subscriber by providing their email, name, subscription status, and assign them to specific lists.
Use Case Examples
- Adding a new subscriber with email and name to a marketing list.
- Creating a subscriber and preconfirming their subscription status to avoid double opt-in.
- Assigning custom attributes to a subscriber during creation.
Properties
| Name | Meaning |
|---|---|
| The email address of the subscriber to be created. | |
| Name | The name of the subscriber. |
| Status | The subscription status of the subscriber (e.g., active, unsubscribed). |
| Lists | JSON array specifying the lists to which the subscriber should be added. |
| List Uuids | JSON array of list UUIDs to assign the subscriber to. |
| Preconfirm Subscriptions | Boolean flag to preconfirm subscriptions, bypassing confirmation steps if true. |
| Attribs | JSON object containing custom attributes for the subscriber. |
| Request Options | Settings for request behavior such as batching, SSL validation, proxy, and timeout. |
Output
JSON
id- Unique identifier of the created subscriber.email- Email address of the created subscriber.name- Name of the created subscriber.status- Subscription status of the created subscriber.lists- Lists to which the subscriber belongs.attribs- Custom attributes associated with the subscriber.
Dependencies
- Requires an API key credential for authenticating with the Listmonk API.
Troubleshooting
- Ensure the email field is provided and correctly formatted; missing or invalid emails will cause errors.
- Check API credentials and base URL configuration to avoid authentication failures.
- If using batching, verify batch size and interval settings to prevent request throttling issues.
- If SSL errors occur, consider enabling the option to ignore SSL issues, but be aware of security risks.
Links
- Listmonk API Documentation - Official API documentation for Listmonk, detailing endpoints and request formats.