Developer docs

Tapfiliate integration

Tapfiliate is an affiliate and referral tracking platform that enables…

Updated June 2026 40 actions available

Provider
tapfiliate
Category
Other
Setup
User-supplied API key
Actions
40 available

Quick start

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

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

Show all 40 actions
  • TAPFILIATE_GET_AFFILIATE_PROSPECT
  • TAPFILIATE_GET_PROGRAM
  • TAPFILIATE_LIST_AFFILIATE_CUSTOM_FIELDS
  • TAPFILIATE_LIST_AFFILIATE_GROUPS
  • TAPFILIATE_LIST_AFFILIATE_META_DATA
  • TAPFILIATE_LIST_AFFILIATE_NOTES
  • TAPFILIATE_LIST_AFFILIATE_PAYMENTS
  • TAPFILIATE_LIST_AFFILIATE_PROGRAMS
  • TAPFILIATE_LIST_AFFILIATE_PROSPECTS
  • TAPFILIATE_LIST_ALL_AFFILIATES
  • TAPFILIATE_LIST_BALANCES
  • TAPFILIATE_LIST_CONVERSIONS
  • TAPFILIATE_LIST_CUSTOMERS
  • TAPFILIATE_LIST_PROGRAM_AFFILIATES
  • TAPFILIATE_LIST_PROGRAM_BONUSES
  • TAPFILIATE_LIST_PROGRAM_COMMISSION_TYPES
  • TAPFILIATE_LIST_PROGRAM_MLM_LEVELS
  • TAPFILIATE_PAYMENTS_CREATE_A_PAYMENT
  • TAPFILIATE_PAYMENTS_LIST_ALL_PAYMENTS
  • TAPFILIATE_PAYMENTS_RETRIEVE_A_PAYMENT
  • TAPFILIATE_PAYOUT_METHODS_LIST_ALL_PAYOUT_METHODS
  • TAPFILIATE_PROGRAMS_LIST_ALL_PROGRAMS
  • TAPFILIATE_REMOVE_AFFILIATE_GROUP
  • TAPFILIATE_SET_AFFILIATE_GROUP
  • TAPFILIATE_SET_AFFILIATE_META_DATA
  • TAPFILIATE_SET_AFFILIATE_META_DATA_BY_KEY
  • TAPFILIATE_SET_AFFILIATE_PARENT
  • TAPFILIATE_UPDATE_AFFILIATE_GROUP

Build with Tapfiliate

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