Missive integration
Missive is a collaborative email and chat application designed to streamline…
- Provider
- missive
- Category
- Setup
- User-supplied API key
- Actions
- 40 available
Quick start
Call Missive from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Missive'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(
"MISSIVE_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 Missive 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
40 actions exposed via the
Missive integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
MISSIVE_CREATE_ANALYTICS_REPORT -
MISSIVE_CREATE_CONTACTS -
MISSIVE_CREATE_DRAFT -
MISSIVE_CREATE_POST -
MISSIVE_CREATE_RESPONSE -
MISSIVE_CREATE_SHARED_LABEL -
MISSIVE_CREATE_TASK -
MISSIVE_CREATE_TEAM -
MISSIVE_CREATE_WEBHOOK -
MISSIVE_DELETE_DRAFT -
MISSIVE_DELETE_POST -
MISSIVE_DELETE_RESPONSES
Show all 40 actions
-
MISSIVE_DELETE_WEBHOOK -
MISSIVE_GET_ANALYTICS_REPORT -
MISSIVE_GET_CONTACT -
MISSIVE_GET_CONVERSATION -
MISSIVE_GET_CONVERSATION_MESSAGES -
MISSIVE_GET_MESSAGE -
MISSIVE_GET_RESPONSE -
MISSIVE_GET_TASK -
MISSIVE_LIST_CONTACT_BOOKS -
MISSIVE_LIST_CONTACT_GROUPS -
MISSIVE_LIST_CONTACTS -
MISSIVE_LIST_CONVERSATION_COMMENTS -
MISSIVE_LIST_CONVERSATION_DRAFTS -
MISSIVE_LIST_CONVERSATION_POSTS -
MISSIVE_LIST_CONVERSATIONS -
MISSIVE_LIST_MESSAGES -
MISSIVE_LIST_ORGANIZATIONS -
MISSIVE_LIST_RESPONSES -
MISSIVE_LIST_SHARED_LABELS -
MISSIVE_LIST_TASKS -
MISSIVE_LIST_TEAMS -
MISSIVE_LIST_USERS -
MISSIVE_MERGE_CONVERSATIONS -
MISSIVE_UPDATE_CONTACT -
MISSIVE_UPDATE_RESPONSE -
MISSIVE_UPDATE_SHARED_LABELS -
MISSIVE_UPDATE_TASK -
MISSIVE_UPDATE_TEAM
Build with Missive
Open OverSkill, describe what you want to build, and reference Missive in your prompt — the AI will wire up the integration automatically.