Moosend integration
Moosend is a cloud-based, AI-powered email marketing solution that allows you…
- Provider
- moosend
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 31 available
Quick start
Call Moosend from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Moosend's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"MOOSEND_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Moosend API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
31 actions exposed via the
Moosend integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
MOOSEND_ADD_SEGMENT_CRITERIA -
MOOSEND_ADD_SUBSCRIBER -
MOOSEND_CLONE_CAMPAIGN -
MOOSEND_CREATE_CUSTOM_FIELD -
MOOSEND_CREATE_MAILING_LIST -
MOOSEND_CREATE_SEGMENT -
MOOSEND_DELETE_CAMPAIGN -
MOOSEND_DELETE_CUSTOM_FIELD -
MOOSEND_DELETE_MAILING_LIST -
MOOSEND_GET_ALL_CAMPAIGNS -
MOOSEND_GET_ALL_SUBSCRIBERS -
MOOSEND_GET_CAMPAIGN_DETAILS
Show all 31 actions
-
MOOSEND_GET_CAMPAIGN_STATS_BY_LOCATION -
MOOSEND_GET_MAILING_LIST_DETAILS -
MOOSEND_GET_SUBSCRIBER_BY_EMAIL -
MOOSEND_LIST_ALL_MAILING_LISTS -
MOOSEND_LIST_ALL_SENDERS -
MOOSEND_LIST_CAMPAIGNS_WITH_PAGING -
MOOSEND_LIST_SEGMENTS -
MOOSEND_REMOVE_MULTIPLE_SUBSCRIBERS -
MOOSEND_SCHEDULE_CAMPAIGN -
MOOSEND_SEND_CAMPAIGN -
MOOSEND_UNSCHEDULE_CAMPAIGN -
MOOSEND_UNSUBSCRIBE_FROM_ACCOUNT -
MOOSEND_UNSUBSCRIBE_FROM_MAILING_LIST -
MOOSEND_UPDATE_CAMPAIGN -
MOOSEND_UPDATE_CUSTOM_FIELD -
MOOSEND_UPDATE_MAILING_LIST -
MOOSEND_UPDATE_SEGMENT -
MOOSEND_UPDATE_SEGMENT_CRITERIA -
MOOSEND_UPDATE_SUBSCRIBER
Build with Moosend
Open OverSkill, describe what you want to build, and reference Moosend in your prompt — the AI will wire up the integration automatically.