Developer docs

Supportbee integration

SupportBee is a web-based email support tool that helps businesses organize…

Updated June 2026 41 actions available

Provider
supportbee
Category
Other
Setup
User-supplied API key
Actions
41 available

Quick start

Call Supportbee from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Supportbee'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(
  "SUPPORTBEE_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 Supportbee 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

41 actions exposed via the Supportbee integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 41 actions
  • SUPPORTBEE_DELETE_SNIPPET
  • SUPPORTBEE_DELETE_TICKET
  • SUPPORTBEE_FETCH_EMAILS
  • SUPPORTBEE_FETCH_LABELS
  • SUPPORTBEE_FETCH_SNIPPETS
  • SUPPORTBEE_FETCH_TEAMS
  • SUPPORTBEE_GET_AVG_FIRST_RESPONSE_TIME_REPORT
  • SUPPORTBEE_GET_REPLIES_COUNT_REPORT
  • SUPPORTBEE_GET_TICKET
  • SUPPORTBEE_GET_TICKETS_COUNT_REPORT
  • SUPPORTBEE_LIST_TICKET_COMMENTS
  • SUPPORTBEE_LIST_TICKET_REPLIES
  • SUPPORTBEE_LIST_TICKETS
  • SUPPORTBEE_LIST_USERS
  • SUPPORTBEE_MARK_TICKET_AS_ANSWERED
  • SUPPORTBEE_MARK_TICKET_AS_SPAM
  • SUPPORTBEE_MARK_TICKET_AS_UNANSWERED
  • SUPPORTBEE_REMOVE_LABEL_FROM_TICKET
  • SUPPORTBEE_SEARCH_TICKETS
  • SUPPORTBEE_SHOW_TICKET_REPLY
  • SUPPORTBEE_SHOW_USER_OR_CUSTOMER_GROUP
  • SUPPORTBEE_TRASH_TICKET
  • SUPPORTBEE_UNARCHIVE_TICKET
  • SUPPORTBEE_UNASSIGN_TICKET_FROM_TEAM
  • SUPPORTBEE_UNASSIGN_TICKET_FROM_USER
  • SUPPORTBEE_UNMARK_TICKET_AS_SPAM
  • SUPPORTBEE_UNTRASH_TICKET
  • SUPPORTBEE_UPDATE_SNIPPET
  • SUPPORTBEE_UPDATE_USER

Build with Supportbee

Open OverSkill, describe what you want to build, and reference Supportbee in your prompt — the AI will wire up the integration automatically.