Reply.io integration
Reply.io is an AI-powered sales engagement platform that automates and…
- Provider
- reply_io
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 33 available
Quick start
Call Reply.io from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Reply.io'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(
"REPLY_IO_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 Reply.io 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
33 actions exposed via the
Reply.io integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
REPLY_IO_ADD_CONTACT_TO_SEQUENCE -
REPLY_IO_ARCHIVE_SEQUENCE -
REPLY_IO_CLEAR_CONTACT_STATUS -
REPLY_IO_CONNECT_EXCHANGE_ACCOUNT -
REPLY_IO_CONNECT_GMAIL_ACCOUNT -
REPLY_IO_CREATE_CONTACT -
REPLY_IO_CREATE_SEQUENCE_STEP -
REPLY_IO_DELETE_CONTACT -
REPLY_IO_DELETE_EMAIL_ACCOUNT -
REPLY_IO_DELETE_SCHEDULE -
REPLY_IO_DELETE_SEQUENCE -
REPLY_IO_DELETE_USER
Show all 33 actions
-
REPLY_IO_GENERATE_ULID -
REPLY_IO_GET_CONTACT_BY_ID -
REPLY_IO_GET_CONTACT_STATUS -
REPLY_IO_GET_CURRENT_USER -
REPLY_IO_GET_DISCONNECTED_EMAIL_ACCOUNTS -
REPLY_IO_GET_SEQUENCE_BY_ID -
REPLY_IO_GET_SEQUENCE_CONTACTS_EXTENDED -
REPLY_IO_GET_SEQUENCE_STEP_BY_ID -
REPLY_IO_LIST_CONTACTS_BASIC -
REPLY_IO_LIST_EMAIL_ACCOUNTS -
REPLY_IO_LIST_LISTS -
REPLY_IO_LIST_SEQUENCES -
REPLY_IO_LIST_SEQUENCE_STEPS -
REPLY_IO_PAUSE_SEQUENCE -
REPLY_IO_REMOVE_CONTACT_FROM_SEQUENCE -
REPLY_IO_REMOVE_CONTACTS_FROM_SEQUENCE -
REPLY_IO_SEARCH_CONTACTS -
REPLY_IO_SET_CONTACT_STATUS -
REPLY_IO_START_SEQUENCE -
REPLY_IO_UPDATE_CONTACT -
REPLY_IO_UPDATE_EMAIL_ACCOUNT
Build with Reply.io
Open OverSkill, describe what you want to build, and reference Reply.io in your prompt — the AI will wire up the integration automatically.