Unione integration
UniOne is an email delivery service offering a versatile Web API and SMTP API…
- Provider
- unione
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 32 available
Quick start
Call Unione from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Unione'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(
"UNIONE_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 Unione 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
32 actions exposed via the
Unione integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
UNIONE_DELETE_EVENT_DUMP -
UNIONE_DELETE_TEMPLATE -
UNIONE_DELETE_WEBHOOK -
UNIONE_EMAIL_BALANCE -
UNIONE_EMAIL_CANCEL -
UNIONE_EMAIL_DOMAIN -
UNIONE_EMAIL_EVENT_GET -
UNIONE_EMAIL_GET -
UNIONE_EMAIL_LIST -
UNIONE_EMAIL_RESEND -
UNIONE_EMAIL_RESUBSCRIBE -
UNIONE_EMAIL_RESUME
Show all 32 actions
-
UNIONE_EMAIL_SMTP -
UNIONE_EMAIL_STATISTICS -
UNIONE_EMAIL_UNSUBSCRIBE -
UNIONE_EMAIL_VALIDATE_BATCH -
UNIONE_EMAIL_VALIDATE_DELETE -
UNIONE_EMAIL_VALIDATE_RETRY -
UNIONE_EMAIL_WEBHOOK_TYPES -
UNIONE_EVENT_DUMP_CREATE -
UNIONE_EVENT_DUMP_LIST -
UNIONE_GET_EVENT_DUMP -
UNIONE_GET_SUPPRESSION -
UNIONE_GET_TEMPLATE -
UNIONE_GET_WEBHOOK -
UNIONE_SCHEDULE_EMAIL -
UNIONE_SUPPRESSION_LIST -
UNIONE_TAG_DELETE -
UNIONE_TAG_LIST -
UNIONE_TEMPLATE_LIST -
UNIONE_TEMPLATE_SET -
UNIONE_WEBHOOK_SET
Build with Unione
Open OverSkill, describe what you want to build, and reference Unione in your prompt — the AI will wire up the integration automatically.