Thanks.io integration
thanks.io is a direct mail automation platform that enables users to send…
- Provider
- thanks_io
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 29 available
Quick start
Call Thanks.io from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Thanks.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(
"THANKS_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 Thanks.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
29 actions exposed via the
Thanks.io integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
THANKS_IO_ADD_RECIPIENT_TO_MAILING_LIST -
THANKS_IO_CREATE_MAILING_LIST -
THANKS_IO_DELETE_MAILING_LIST -
THANKS_IO_DELETE_RECIPIENT_FROM_MAILING_LIST -
THANKS_IO_DELETE_SUB_ACCOUNT -
THANKS_IO_EXECUTE_STORED_SEND -
THANKS_IO_LIST_HANDWRITING_STYLES -
THANKS_IO_LIST_IMAGE_TEMPLATES -
THANKS_IO_LIST_MAILING_LISTS -
THANKS_IO_LIST_MESSAGE_TEMPLATES -
THANKS_IO_MAILING_LISTS_BUY_RADIUS_SEARCH -
THANKS_IO_ORDER_PREVIEW_LETTER
Show all 29 actions
-
THANKS_IO_ORDER_PREVIEW_NOTECARD -
THANKS_IO_ORDER_PREVIEW_WINDOWLESS_LETTER -
THANKS_IO_ORDERS_LIST -
THANKS_IO_ORDERS_SEARCH_BY_ADDRESS -
THANKS_IO_RECIPIENTS_CREATE_MULTI -
THANKS_IO_RECIPIENTS_DELETE_BY_ADDRESS -
THANKS_IO_RECIPIENTS_GET_DETAILS -
THANKS_IO_RECIPIENTS_SEARCH_BY_EMAIL -
THANKS_IO_RECIPIENTS_UPDATE -
THANKS_IO_SEND_POSTCARD -
THANKS_IO_STORED_SEND_NOTECARD -
THANKS_IO_STORED_SEND_POSTCARD -
THANKS_IO_STORED_SEND_WINDOWLESS_LETTER -
THANKS_IO_SUB_ACCOUNTS_CREATE -
THANKS_IO_SUB_ACCOUNTS_LIST -
THANKS_IO_SUB_ACCOUNTS_SHOW -
THANKS_IO_SUB_ACCOUNTS_UPDATE
Build with Thanks.io
Open OverSkill, describe what you want to build, and reference Thanks.io in your prompt — the AI will wire up the integration automatically.