Customer.io integration
Customer.io is a customer engagement platform that enables businesses to send…
- Provider
- customerio
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 24 available
Quick start
Call Customer.io from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Customer.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(
"CUSTOMERIO_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 Customer.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
24 actions exposed via the
Customer.io integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
CUSTOMERIO_ADD_PERSON_TO_GROUP -
CUSTOMERIO_CREATE_ALIAS -
CUSTOMERIO_CUSTOMER_IO_SUPPRESS_PERSON -
CUSTOMERIO_GET_INTEGRATIONS -
CUSTOMERIO_GET_MESSAGES -
CUSTOMERIO_GET_SEGMENT_DETAILS -
CUSTOMERIO_GET_SEGMENT_MEMBERSHIP -
CUSTOMERIO_GET_SEGMENTS -
CUSTOMERIO_GET_TRIGGER -
CUSTOMERIO_GET_TRIGGERS -
CUSTOMERIO_GET_WEBHOOKS -
CUSTOMERIO_IDENTIFY_PERSON
Show all 24 actions
-
CUSTOMERIO_LIST_COLLECTIONS -
CUSTOMERIO_LIST_IP_ADDRESSES -
CUSTOMERIO_LIST_NEWSLETTERS -
CUSTOMERIO_LIST_SNIPPETS -
CUSTOMERIO_LIST_TRANSACTIONAL_MESSAGES -
CUSTOMERIO_REPORT_PUSH_EVENTS -
CUSTOMERIO_SEND_BATCH -
CUSTOMERIO_TRACK_EVENT -
CUSTOMERIO_TRACK_PAGE -
CUSTOMERIO_TRACK_SCREEN -
CUSTOMERIO_TRIGGER_BROADCAST -
CUSTOMERIO_UNSUBSCRIBE_DELIVERY
Build with Customer.io
Open OverSkill, describe what you want to build, and reference Customer.io in your prompt — the AI will wire up the integration automatically.