Moosend is a cloud-based, AI-powered email marketing solution that allows you to target your audience at scale.
Moosend is a cloud-based, AI-powered email marketing solution that allows you to target your audience at scale. On Nagent, Moosend is exposed as a fully-configurable email newsletters integration that any agent can call — 31 actions, and API key authentication. No code is required to wire Moosend into your workflow — connect it once via the External Integrations panel and reuse it across every agent you build.
Agent builders use Moosend to automate the kinds of tasks email newsletters teams previously handled manually. Concrete examples — each one is a single agent step in Nagent — include:
Every action and trigger is paired with a structured input/output schema (visible in the sections below), so when you wire Moosend into Helix — our agentic agent builder — the editor knows exactly what each step expects and produces. Configure once, deploy anywhere across your Nagent agents.
Every operation an agent can call against Moosend, with input parameters and output schema. Drop these into any step of an agent built in Helix.
MOOSEND_ADD_SEGMENT_CRITERIATool to add a new criterion (rule) to a segment. Use after obtaining the mailing list ID and segment ID to define filtering criteria.
Input parameters
The field of the criterion to filter the mailing list by (e.g., 'Email', 'Name', custom field name).
A search term to filter the specified field by.
Response format. Only 'json' is supported.
Provides an additional filter option to be combined with date-related fields.
An operator that defines the way to compare a criterion field with its value (e.g., 'Is', 'IsNot', 'Contains').
Provides an additional filter option to be combined with date-related fields.
The ID of the segment to add the criterion to.
The ID of the mailing list the specified segment belongs to.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_ADD_SUBSCRIBERTool to add or update a subscriber in a mailing list. Use after obtaining the mailing list ID to manage subscribers.
Input parameters
Display name of the subscriber.
Tags to apply to the subscriber.
Email address of the subscriber.
Response format.
Preference values for the subscriber.
List of custom field values in 'FieldName=Value' format.
The unique identifier of the mailing list to add the subscriber to.
Flag indicating external double opt-in consent.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_CLONE_CAMPAIGNTool to clone an existing campaign, creating an exact copy with the same content and settings. Use when you want to reuse a campaign template or create variations of an existing campaign. The cloned campaign is created as a new draft that can be modified independently.
Input parameters
Response format. Use 'json' (default) for JSON responses or 'xml' for XML responses.
The unique identifier (UUID format) of the campaign to clone. The cloned campaign will be created as a new draft with the same content and settings as the original.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_CREATE_CUSTOM_FIELDTool to create a custom field in a mailing list. Use when you need to define a new custom field for subscriber data.
Input parameters
The name of the custom field.
The response format. Use 'json' for JSON responses and 'xml' for XML responses.
Comma-separated options for a SingleSelectDropdown field.
Whether the custom field is hidden from subscribers on the update profile page.
Whether the custom field is mandatory when adding a subscriber.
The ID of the mailing list where the custom field will be created.
The data type of the custom field.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_CREATE_MAILING_LISTTool to create a new empty mailing list in Moosend. Use after obtaining API key.
Input parameters
Name of the mailing list.
URL displayed after subscription confirmation.
URL users are redirected to after unsubscribing.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_CREATE_SEGMENTTool to create a new segment for a mailing list. Use to organize subscribers based on criteria or create empty segments for future use.
Input parameters
The name of the segment.
Response format. Use 'json' (recommended and default) or 'xml'.
Array of filter criteria. Leave empty to create a segment without criteria.
How many matching subscribers to fetch.
How segment criteria match together.
Value for FetchType 'Top' or 'TopPercent' (e.g., 100 for top 100 subscribers, or 10 for top 10%).
The ID of the mailing list to create the segment in.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_DELETE_CAMPAIGNPermanently deletes a campaign from your Moosend account by its ID. This action removes draft or sent campaigns irreversibly. Use this when you need to clean up campaigns that are no longer needed. The campaign ID can be obtained from listing campaigns or retrieved when a campaign is created. Always verify the campaign ID before deletion as this operation cannot be undone.
Input parameters
Response format. Use 'json' (default) for JSON responses or 'xml' for XML responses.
The unique identifier (UUID format) of the campaign to delete. This can be a draft or sent campaign. Deletion is permanent and irreversible.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_DELETE_CUSTOM_FIELDTool to remove a custom field definition from a mailing list. Use when you have confirmed the custom field ID to delete.
Input parameters
The response format. Use 'json' for JSON responses and 'xml' for XML responses.
The ID of the custom field to delete.
The ID of the mailing list containing the custom field to delete.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_DELETE_MAILING_LISTTool to delete a mailing list. Use when you need to permanently remove a mailing list from your Moosend account after confirming its ID. Deletion is irreversible.
Input parameters
Response format, either 'json' or 'xml'.
The ID of the mailing list to delete.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_GET_ALL_CAMPAIGNSTool to retrieve a list of all campaigns in your account. Use after acquiring valid API credentials to explore campaign data.
Input parameters
Page number of campaign results to retrieve. Defaults to 1.
Response format. Only 'json' is supported.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_GET_ALL_SUBSCRIBERSRetrieves all subscribers from a specified mailing list, filtered by their subscription status (Subscribed, Unsubscribed, Bounced, or Removed). Returns paginated results with subscriber details including email, name, custom fields, and subscription timestamps.
Input parameters
Page number of subscriber results to retrieve. Use this with page_size to paginate through large lists.
Response format.
The subscription status to filter by. 'Subscribed' returns active subscribers, 'Unsubscribed' returns those who opted out, 'Bounced' returns email addresses that bounced, 'Removed' returns manually removed subscribers.
Number of subscriber records to return per page. Maximum recommended is 500.
The ID of the mailing list containing the subscribers.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_GET_CAMPAIGN_DETAILSRetrieves comprehensive details about a specific campaign by its ID. Returns complete campaign information including configuration, status, content, and settings. Use this when you need to inspect or verify campaign properties.
Input parameters
The unique identifier of the campaign whose details are to be retrieved.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_GET_CAMPAIGN_STATS_BY_LOCATIONRetrieves a detailed report of campaign opens (unique and total) by country. Use this when you need to analyze the geographic distribution of email campaign engagement.
Input parameters
The unique identifier of the campaign to retrieve location statistics for.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_GET_MAILING_LIST_DETAILSGets details for a given mailing list including name, member counts, status, and custom field definitions. Optionally include subscriber statistics. Use this when you need to inspect mailing list properties or verify list configuration.
Input parameters
Response format: 'json' or 'xml'.
The ID of the mailing list to be returned.
Whether to include statistics in the response.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_GET_SUBSCRIBER_BY_EMAILRetrieves detailed subscriber information by email address from a specific mailing list. Returns comprehensive subscriber data including ID, name, subscription status, custom fields, tags, preferences, and timestamps for creation, updates, and unsubscribe events. Use this when you need to: - Look up a subscriber's details using their email address - Check if an email is already subscribed to a list - Retrieve custom field values for a subscriber - Check subscription status and history Example: "Get subscriber details for jane.doe@example.com in list 04fad8e2-..."
Input parameters
Email address of the subscriber to retrieve.
Response format (must be 'json').
The ID of the mailing list to search in.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_LIST_ALL_MAILING_LISTSTool to get a list of your active mailing lists in your account. Use after acquiring valid API credentials to explore mailing list data. Optionally include statistics and sort results by various fields.
Input parameters
The page number to display results for. Must be a positive integer.
Response format. Only JSON format is supported.
Sort by property for mailing lists.
The maximum number of results per page. Must be a positive integer.
Sort method for mailing lists.
Whether to fetch statistics for subscribers. Use 'true' or 'false'.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_LIST_ALL_SENDERSTool to retrieve a list of all active senders in your account. Use when you need to view available sender email addresses for campaigns.
Input parameters
Response format. Use 'json' for JSON responses and 'xml' for XML responses.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_LIST_CAMPAIGNS_WITH_PAGINGTool to retrieve a paginated list of all campaigns in your account with detailed information. Use when you need to fetch campaigns with specific page size and sorting options. Paging information is required as input.
Input parameters
The page number to display results for. Must be a positive integer.
Sort field options for campaigns.
The maximum number of results per page. Must be a positive integer up to 100. If a value greater than 100 is specified, it will be treated as 100.
Sort method options.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_LIST_SEGMENTSTool to get a list of all segments with their criteria for a specified mailing list. Use when you need to retrieve segment definitions for targeting specific subscriber groups.
Input parameters
Response format. Only 'json' is supported.
The ID of the mailing list to retrieve segments for.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_REMOVE_MULTIPLE_SUBSCRIBERSTool to permanently remove multiple subscribers from a mailing list. Use when you need to delete multiple subscribers permanently without adding them to the suppression list. Invalid email addresses are automatically ignored.
Input parameters
Comma-separated string of email addresses to remove from the mailing list. Invalid email addresses will be ignored.
Response format. Only 'json' is supported.
The ID of the mailing list to remove the subscribers from.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_SCHEDULE_CAMPAIGNTool to schedule a campaign. Use when you want to set a specific date and time for campaign delivery after confirming its ID.
Input parameters
Response format. Always 'json'.
Time zone for the scheduled date and time in IANA format (e.g., 'Europe/London'). Defaults to UTC if omitted.
The ID of the campaign to schedule.
Scheduled date and time for delivery in 'yyyy-MM-dd HH:mm:ss' format (e.g., '2026-12-31 10:00:00').
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_SEND_CAMPAIGNTool to send an existing draft campaign immediately. Use when you want to dispatch a campaign to all recipients after final review.
Input parameters
Response format. Only 'json' is supported.
The unique identifier of the draft campaign to send.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_UNSCHEDULE_CAMPAIGNTool to unschedule a campaign. Removes a previously defined scheduled date and time from a campaign, so that it will be delivered immediately if already queued or when sent.
Input parameters
Response format. Use 'json' (default and recommended) or 'xml'. Note: Only JSON format is fully supported; XML responses are not parsed by this action.
The ID of the campaign to unschedule.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_UNSUBSCRIBE_FROM_ACCOUNTTool to unsubscribe a subscriber from the account. Use when you need to remove a subscriber from all mailing lists. Note: Rate limit is 20 requests per 10 seconds per API key.
Input parameters
The email address of the subscriber to unsubscribe from the account.
Response format. Use 'json' (recommended and default) or 'xml'. Note: XML responses require additional parsing.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_UNSUBSCRIBE_FROM_MAILING_LISTTool to unsubscribe a subscriber from a specified mailing list. Use when you need to remove a subscriber's active subscription. Rate limit: 20 requests per 10 seconds per API key.
Input parameters
Email address of the subscriber to unsubscribe.
Response format. Only JSON is supported.
The unique identifier of the mailing list to unsubscribe from.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_UPDATE_CAMPAIGNTool to update a draft campaign. Use when you want to modify properties of an existing draft campaign before sending.
Input parameters
Flag to indicate an A/B split campaign.
New name of the campaign.
Response format: 'json' or 'xml'.
Subject line of the campaign.
Second subject line for A/B tests.
ID of the draft campaign to update.
Number of hours to run A/B test (1-24).
Sender email address for the campaign.
URL to fetch campaign HTML content; CSS will be inlined.
HTML content for version B of the campaign.
List of mailing lists and optional segments to send the campaign to.
Reply-to email address for the campaign.
Sender email for version B of the campaign.
Web location for version B of the campaign.
Type of A/B test: Subjectline, Content, or Sender.
Percentage of list to use for A/B testing (5-40).
Email address to receive send confirmations.
Metric to choose A/B winner: OpenRate or TotalUniqueClicks.
Enable Google Analytics tracking if configured.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_UPDATE_CUSTOM_FIELDTool to update properties of an existing custom field in a mailing list. Use after confirming mailing list and custom field IDs.
Input parameters
The new name for the custom field.
The response format. Use 'json' for JSON responses and 'xml' for XML responses.
Comma-separated options for 'SingleSelectDropdown'; required if custom_field_type is 'SingleSelectDropdown'.
Whether the custom field is hidden from subscribers on the update profile page.
Whether the custom field is mandatory when adding a subscriber.
The ID of the custom field to update.
The ID of the mailing list containing the custom field.
Specifies the data type of the custom field; one of 'Text', 'Number', 'DateTime', 'SingleSelectDropdown', 'CheckBox'.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_UPDATE_MAILING_LISTTool to update the properties of an existing mailing list. Use when you need to change list metadata after confirming the list ID.
Input parameters
New name for the mailing list.
Response format, either 'json' or 'xml'.
A description for the mailing list.
Sender name for the mailing list.
Sender email address for the mailing list.
Reply-to email address for the mailing list.
The unique identifier of the mailing list to update.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_UPDATE_SEGMENTTool to update properties and criteria of an existing segment. Use when you need to modify segment name, match type, or filtering criteria.
Input parameters
The new name for the segment. If not provided, the existing name is retained.
Response format. Use 'json' (recommended and default) or 'xml'.
Array of filter criteria for the segment. If provided, existing criteria will be replaced. If not provided, existing criteria are retained.
How many matching subscribers to fetch.
How segment criteria match together.
Value for FetchType 'Top' or 'TopPercent' (e.g., 100 for top 100 subscribers, or 10 for top 10%). Required when FetchType is 'Top' or 'TopPercent'.
The ID of the segment to update.
The ID of the mailing list the segment belongs to.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_UPDATE_SEGMENT_CRITERIATool to update an existing criterion in a segment. Use when you need to modify filtering rules for a mailing list segment.
Input parameters
The field of the criterion to filter the mailing list by (e.g., 'Email', 'Name', custom field names).
A search term to filter the specified field by.
Response format. Use 'json' (recommended and default) or 'xml'. Note: XML responses require additional parsing.
Provides an additional filter option to be combined with date-based fields. Format: ISO 8601 date string.
An operator that defines the way to compare a criterion field with its value (e.g., 'Is', 'IsNot', 'Contains', 'NotContains', 'StartsWith', 'EndsWith').
Provides an additional filter option to be combined with date-based fields. Format: ISO 8601 date string.
The ID of the segment containing the criterion to update.
The ID of the criterion to update.
The ID of the mailing list the specified segment belongs to.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
MOOSEND_UPDATE_SUBSCRIBERTool to update a subscriber in the specified mailing list. Use when you need to modify subscriber information like email, name, or custom fields.
Input parameters
The name of the member
The email address of the member
Response format. Use 'json' (recommended and default) or 'xml'. Note: XML responses require additional parsing.
List of custom field values in 'FieldName=Value' format, matching the member's custom fields
The id of the subscriber to be updated
The ID of the mailing list that contains the subscriber
Flags the member as having given subscription consent by other means
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
No publicly available marketplace agent is found using this tool yet. There are 79 agents privately built on Nagent that already use Moosend.
Build on Nagent
Connect Moosend to any Nagent agent in minutes — no API key management, no boilerplate. Just configure and deploy.
The five questions agent builders ask before adopting a new integration.
Open the External Integrations panel inside Nagent (app.nagent.ai/externalIntegration), find Moosend, and click "Connect Now." You'll authenticate with an API key — Nagent handles credential storage and refresh automatically. Once connected, Moosend is available to any agent in your workspace.
No. Nagent provides no-code integration for every tool. Once Moosend is connected, you configure its 31 actions directly in the agent builder UI — no API calls, no boilerplate, no schema management.
Helix — Nagent's agentic agent builder — lets you drop Moosend steps into any workflow visually. Pick an action (e.g., one of those listed above), fill in the inputs (Helix knows the required vs. optional schema for each parameter), and connect it to upstream/downstream steps. Triggers run as the entry point of an agent, so when a Moosend event fires, the agent kicks off automatically.
Every Moosend action and trigger ships with a fully-typed schema — input parameters with name, type, required flag, and description, plus the output payload shape. The schemas are documented in the sections above. Helix uses these schemas to validate your configuration at build time and to type-check the data flowing between steps.
Yes. While Moosend ships with 31 pre-built email newsletters actions, you can layer custom logic around them inside Helix — pre/post-processing steps, conditional branches, retries, or stitching Moosend together with other connected tools. For deeper customization, talk to our team about Nagent's Agentic AI Lab — forward-deployed engineers who build Moosend-based workflows tailored to your business.