Helpwise integration
Helpwise is an easy-to-use customer service platform that helps you manage all…
- Provider
- helpwise
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 37 available
Quick start
Call Helpwise from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Helpwise'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(
"HELPWISE_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 Helpwise 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
37 actions exposed via the
Helpwise integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
HELPWISE_CREATE_ATTACHMENT -
HELPWISE_CREATE_NOTE -
HELPWISE_CREATE_TEAM -
HELPWISE_CREATE_WEBHOOK -
HELPWISE_DELETE_CONTACT -
HELPWISE_DELETE_CONVERSATION -
HELPWISE_DELETE_MAILBOX -
HELPWISE_DELETE_MESSAGE -
HELPWISE_DELETE_NOTE -
HELPWISE_DELETE_SIGNATURE -
HELPWISE_DELETE_TAG -
HELPWISE_DELETE_TEAM
Show all 37 actions
-
HELPWISE_DELETE_TEMPLATE -
HELPWISE_DELETE_WEBHOOK -
HELPWISE_GET_ATTACHMENT -
HELPWISE_GET_ATTACHMENTS -
HELPWISE_GET_CONTACT -
HELPWISE_GET_CONVERSATION -
HELPWISE_GET_CONVERSATIONS -
HELPWISE_GET_CUSTOM_FIELD -
HELPWISE_GET_MAILBOX -
HELPWISE_GET_MAILBOXES -
HELPWISE_GET_NOTE -
HELPWISE_GET_NOTES -
HELPWISE_GET_TAG -
HELPWISE_GET_TEAM -
HELPWISE_GET_TEAMS -
HELPWISE_GET_TEMPLATES -
HELPWISE_GET_USERS -
HELPWISE_GET_WEBHOOK -
HELPWISE_GET_WEBHOOKS -
HELPWISE_SEARCH_CONTACTS -
HELPWISE_UPDATE_CONTACT -
HELPWISE_UPDATE_MAILBOX -
HELPWISE_UPDATE_MESSAGE -
HELPWISE_UPDATE_TAG -
HELPWISE_UPDATE_TEMPLATE
Build with Helpwise
Open OverSkill, describe what you want to build, and reference Helpwise in your prompt — the AI will wire up the integration automatically.