ReferralRock integration
ReferralRock is a referral marketing platform that helps businesses create and…
- Provider
- referralrock
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 33 available
Quick start
Call ReferralRock from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to ReferralRock'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(
"REFERRALROCK_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 ReferralRock 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
33 actions exposed via the
ReferralRock integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
REFERRALROCK_DELETE_EMAIL_REMOVEUNSUBSCRIBE -
REFERRALROCK_DELETE_HOOKS -
REFERRALROCK_DELETE_MEMBERS_REMOVE -
REFERRALROCK_DELETE_REFERRAL_REMOVE -
REFERRALROCK_DELETE_REWARDS_REMOVE -
REFERRALROCK_GET_EMAIL_GETUNSUBSCRIBED -
REFERRALROCK_GET_HOOKS_HISTORY_EVENTNAME -
REFERRALROCK_GET_MEMBERS -
REFERRALROCK_GET_MEMBER_STATS_GET_SINGLE -
REFERRALROCK_GET_PAYOUTS_ID -
REFERRALROCK_GET_PAYOUTS_PENDING -
REFERRALROCK_GET_PAYOUTS_TRANSACTIONS
Show all 33 actions
-
REFERRALROCK_GET_PROGRAM_GETSINGLE -
REFERRALROCK_GET_PROGRAMS -
REFERRALROCK_GET_REFERRALS -
REFERRALROCK_GET_REFERRAL_SINGLE -
REFERRALROCK_GET_REWARDRULES -
REFERRALROCK_GET_REWARDS -
REFERRALROCK_POST_EMAIL_REMOVEUNSUBSCRIBE -
REFERRALROCK_POST_EMAIL_UNSUBSCRIBE -
REFERRALROCK_POST_HOOKS -
REFERRALROCK_POST_INVITEFEED -
REFERRALROCK_POST_INVITEFEEDS -
REFERRALROCK_POST_MEMBER_ACCESS_URLS -
REFERRALROCK_POST_MEMBERS -
REFERRALROCK_POST_MEMBERS_REMOVE -
REFERRALROCK_POST_REFERRALACTION -
REFERRALROCK_POST_REFERRAL_REMOVE -
REFERRALROCK_POST_REFERRALS -
REFERRALROCK_POST_REFERRALS_STATUS -
REFERRALROCK_POST_REFERRAL_UPDATE -
REFERRALROCK_POST_REWARDS_ISSUE -
REFERRALROCK_POST_REWARDS_REMOVE
Build with ReferralRock
Open OverSkill, describe what you want to build, and reference ReferralRock in your prompt — the AI will wire up the integration automatically.