Developer docs

Salesflare integration

Salesflare is a CRM platform that helps small and medium-sized B2B businesses…

Updated June 2026 63 actions available

Provider
salesflare
Category
Crm
Setup
User-supplied API key
Actions
63 available

Quick start

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

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

Show all 63 actions
  • SALESFLARE_DELETE_CONTACT
  • SALESFLARE_DELETE_CUSTOM_FIELD
  • SALESFLARE_DELETE_INTERNAL_NOTE
  • SALESFLARE_DELETE_MEETING
  • SALESFLARE_DELETE_OPPORTUNITY
  • SALESFLARE_DELETE_TAG
  • SALESFLARE_DELETE_TASK
  • SALESFLARE_GET_ACCOUNT
  • SALESFLARE_GET_AI_SETTINGS
  • SALESFLARE_GET_CONTACT
  • SALESFLARE_GET_CURRENT_USER
  • SALESFLARE_GET_CUSTOM_FIELD
  • SALESFLARE_GET_MEETING
  • SALESFLARE_GET_OPPORTUNITY
  • SALESFLARE_GET_STAGE
  • SALESFLARE_GET_TAG_USAGE
  • SALESFLARE_GET_USER
  • SALESFLARE_GET_WORKFLOW
  • SALESFLARE_GET_WORKFLOW_MERGE_FIELDS
  • SALESFLARE_LIST_ACCOUNT_MESSAGES
  • SALESFLARE_LIST_ACCOUNTS
  • SALESFLARE_LIST_CONTACTS
  • SALESFLARE_LIST_CURRENCIES
  • SALESFLARE_LIST_CUSTOM_FIELD_OPTIONS
  • SALESFLARE_LIST_CUSTOM_FIELDS
  • SALESFLARE_LIST_CUSTOM_FIELD_TYPES
  • SALESFLARE_LIST_EMAIL_DATASOURCES
  • SALESFLARE_LIST_FILTER_FIELDS
  • SALESFLARE_LIST_GROUPS
  • SALESFLARE_LIST_MY_CONTACTS
  • SALESFLARE_LIST_OPPORTUNITIES
  • SALESFLARE_LIST_PERSONS
  • SALESFLARE_LIST_PIPELINES
  • SALESFLARE_LIST_STAGES
  • SALESFLARE_LIST_TAGS
  • SALESFLARE_LIST_TASKS
  • SALESFLARE_LIST_USERS
  • SALESFLARE_LIST_WORKFLOWS
  • SALESFLARE_UPDATE_ACCOUNT
  • SALESFLARE_UPDATE_ACCOUNT_CONTACTS
  • SALESFLARE_UPDATE_ACCOUNT_USERS
  • SALESFLARE_UPDATE_AI_SETTINGS
  • SALESFLARE_UPDATE_CONTACT
  • SALESFLARE_UPDATE_CUSTOM_FIELD
  • SALESFLARE_UPDATE_EMAIL_DATASOURCE
  • SALESFLARE_UPDATE_INTERNAL_NOTE
  • SALESFLARE_UPDATE_OPPORTUNITY
  • SALESFLARE_UPDATE_TAG
  • SALESFLARE_UPDATE_TASK
  • SALESFLARE_UPDATE_WORKFLOW
  • SALESFLARE_UPDATE_WORKFLOW_AUDIENCE

Build with Salesflare

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