- Provider
- resend
- Category
- Setup
- User-supplied API key
- Actions
- 62 available
Quick start
Call Resend from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Resend'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(
"RESEND_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 Resend 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
62 actions exposed via the
Resend integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
RESEND_ADD_CONTACT_TO_SEGMENT -
RESEND_CANCEL_EMAIL -
RESEND_CREATE_API_KEY -
RESEND_CREATE_AUDIENCE -
RESEND_CREATE_CONTACT -
RESEND_CREATE_CONTACT_PROPERTY -
RESEND_CREATE_CONTACT_V2 -
RESEND_CREATE_DOMAIN -
RESEND_CREATE_TEMPLATE -
RESEND_CREATE_TOPIC -
RESEND_CREATE_WEBHOOK -
RESEND_DELETE_API_KEY
Show all 62 actions
-
RESEND_DELETE_AUDIENCE -
RESEND_DELETE_CONTACT -
RESEND_DELETE_CONTACT_BY_ID -
RESEND_DELETE_CONTACT_PROPERTY -
RESEND_DELETE_DOMAIN -
RESEND_DELETE_SEGMENT -
RESEND_DELETE_TEMPLATE -
RESEND_DELETE_TOPIC -
RESEND_DELETE_WEBHOOK -
RESEND_DUPLICATE_TEMPLATE -
RESEND_GET_CONTACT -
RESEND_GET_CONTACT_PROPERTY -
RESEND_GET_EMAIL_ATTACHMENT -
RESEND_GET_SEGMENT -
RESEND_GET_TEMPLATE -
RESEND_GET_TOPIC -
RESEND_GET_WEBHOOK -
RESEND_LIST_ALL_CONTACTS -
RESEND_LIST_API_KEYS -
RESEND_LIST_AUDIENCES -
RESEND_LIST_BROADCASTS -
RESEND_LIST_CONTACT_PROPERTIES -
RESEND_LIST_CONTACTS -
RESEND_LIST_CONTACT_SEGMENTS -
RESEND_LIST_CONTACT_TOPICS -
RESEND_LIST_DOMAINS -
RESEND_LIST_EMAIL_ATTACHMENTS -
RESEND_LIST_EMAILS -
RESEND_LIST_RECEIVED_EMAILS -
RESEND_LIST_SEGMENTS -
RESEND_LIST_TEMPLATES -
RESEND_LIST_TOPICS -
RESEND_LIST_WEBHOOKS -
RESEND_PUBLISH_TEMPLATE -
RESEND_REMOVE_CONTACT_FROM_SEGMENT -
RESEND_RETRIEVE_AUDIENCE -
RESEND_RETRIEVE_CONTACT -
RESEND_RETRIEVE_DOMAIN -
RESEND_RETRIEVE_EMAIL -
RESEND_SEND_BATCH_EMAILS -
RESEND_SEND_EMAIL -
RESEND_UPDATE_BROADCAST -
RESEND_UPDATE_CONTACT -
RESEND_UPDATE_CONTACT_PROPERTY -
RESEND_UPDATE_DOMAIN -
RESEND_UPDATE_EMAIL -
RESEND_UPDATE_TEMPLATE -
RESEND_UPDATE_TOPIC -
RESEND_UPDATE_WEBHOOK -
RESEND_VERIFY_DOMAIN
Build with Resend
Open OverSkill, describe what you want to build, and reference Resend in your prompt — the AI will wire up the integration automatically.