Developer docs

Thanks.io integration

thanks.io is a direct mail automation platform that enables users to send…

Updated June 2026 29 actions available

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.

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.