Developer docs

Mailcoach integration

Mailcoach is an email marketing platform that allows users to manage email…

Updated June 2026 56 actions available

Provider
mailcoach
Category
Other
Setup
User-supplied API key
Actions
56 available

Quick start

Call Mailcoach from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Mailcoach'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(
  "MAILCOACH_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 Mailcoach 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

56 actions exposed via the Mailcoach integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 56 actions
  • MAILCOACH_DELETE_SEGMENT
  • MAILCOACH_DELETE_SUBSCRIBER
  • MAILCOACH_DELETE_SUBSCRIBER_IMPORT
  • MAILCOACH_DELETE_SUPPRESSION
  • MAILCOACH_DELETE_TAG
  • MAILCOACH_DELETE_TEMPLATE
  • MAILCOACH_DELETE_TRANSACTIONAL_MAIL
  • MAILCOACH_GET_ALL_CAMPAIGNS
  • MAILCOACH_GET_ALL_SENT_ITEMS
  • MAILCOACH_GET_ALL_SUBSCRIBER_IMPORTS
  • MAILCOACH_GET_ALL_SUPPRESSIONS
  • MAILCOACH_GET_ALL_TAGS
  • MAILCOACH_GET_ALL_TEMPLATES
  • MAILCOACH_GET_ALL_TRANSACTIONAL_EMAIL_TEMPLATES
  • MAILCOACH_GET_CAMPAIGN_BOUNCES
  • MAILCOACH_GET_CAMPAIGN_CLICKS
  • MAILCOACH_GET_CAMPAIGN_OPENS
  • MAILCOACH_GET_CAMPAIGN_UNSUBSCRIBES
  • MAILCOACH_GET_EMAIL_LISTS
  • MAILCOACH_GET_SEGMENT
  • MAILCOACH_GET_SPECIFIC_CAMPAIGN
  • MAILCOACH_GET_SPECIFIC_EMAIL_LIST
  • MAILCOACH_GET_SPECIFIC_SUBSCRIBER
  • MAILCOACH_GET_SPECIFIC_SUPPRESSION
  • MAILCOACH_GET_SPECIFIC_TAG
  • MAILCOACH_GET_SPECIFIC_TEMPLATE
  • MAILCOACH_GET_SUBSCRIBER_IMPORT
  • MAILCOACH_GET_TRANSACTIONAL_MAIL
  • MAILCOACH_GET_USER
  • MAILCOACH_LIST_SEGMENTS
  • MAILCOACH_LIST_SUBSCRIBERS
  • MAILCOACH_LIST_TRANSACTIONAL_MAILS
  • MAILCOACH_REMOVE_TAGS_FROM_SUBSCRIBER
  • MAILCOACH_RESEND_CONFIRMATION
  • MAILCOACH_START_SUBSCRIBER_IMPORT
  • MAILCOACH_SUBSCRIBE_TO_EMAIL_LIST
  • MAILCOACH_UNSUBSCRIBE_SUBSCRIBER
  • MAILCOACH_UPDATE_CAMPAIGN
  • MAILCOACH_UPDATE_EMAIL_LIST
  • MAILCOACH_UPDATE_SEGMENT
  • MAILCOACH_UPDATE_SUBSCRIBER
  • MAILCOACH_UPDATE_SUBSCRIBER_IMPORT
  • MAILCOACH_UPDATE_TAG
  • MAILCOACH_UPDATE_TEMPLATE

Build with Mailcoach

Open OverSkill, describe what you want to build, and reference Mailcoach in your prompt — the AI will wire up the integration automatically.