Listmonk icon

Listmonk

Interact with Listmonk API

Actions71

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

  1. Adding a new subscriber with email and name to a marketing list.
  2. Creating a subscriber and preconfirming their subscription status to avoid double opt-in.
  3. Assigning custom attributes to a subscriber during creation.

Properties

Name Meaning
Email 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

Discussion