Raisely integration
Raisely is a fundraising platform that enables organizations to create and…
- Provider
- raisely
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 61 available
Quick start
Call Raisely from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Raisely'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(
"RAISELY_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 Raisely 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
61 actions exposed via the
Raisely integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
RAISELY_CHECK_PROFILE_URL -
RAISELY_CHECK_USER -
RAISELY_CREATE_CAMPAIGN -
RAISELY_CREATE_DONATION -
RAISELY_CREATE_EXERCISE_LOG -
RAISELY_CREATE_INTERACTION -
RAISELY_CREATE_POST -
RAISELY_CREATE_PROMO_CODE -
RAISELY_CREATE_WEBHOOK -
RAISELY_DELETE_EXERCISE_LOG -
RAISELY_DELETE_INTERACTION -
RAISELY_DELETE_POST
Show all 61 actions
-
RAISELY_DELETE_PROFILE -
RAISELY_DELETE_WEBHOOK -
RAISELY_GET_API_DOCS -
RAISELY_GET_AUTHENTICATE -
RAISELY_GET_AVAILABLE_EVENTS -
RAISELY_GET_CAMPAIGN -
RAISELY_GET_CAMPAIGN_PROFILE -
RAISELY_GET_CAMPAIGNS -
RAISELY_GET_CAMPAIGNS_PROFILES -
RAISELY_GET_EXERCISE_LOG -
RAISELY_GET_INTERACTION -
RAISELY_GET_POST -
RAISELY_GET_PROFILE -
RAISELY_GET_PROFILES -
RAISELY_GET_USER -
RAISELY_GET_USER_PROFILES -
RAISELY_GET_USERS -
RAISELY_LIST_CAMPAIGN_DONATIONS -
RAISELY_LIST_CAMPAIGN_PRODUCTS -
RAISELY_LIST_CAMPAIGN_SUBSCRIPTIONS -
RAISELY_LIST_DONATIONS -
RAISELY_LIST_EXERCISE_LOGS -
RAISELY_LIST_INTERACTION_CATEGORIES -
RAISELY_LIST_INTERACTIONS -
RAISELY_LIST_ORDERS -
RAISELY_LIST_POSTS -
RAISELY_LIST_PROFILE_DONATIONS -
RAISELY_LIST_PROFILE_MEMBERS -
RAISELY_LIST_PROFILE_POSTS -
RAISELY_LIST_PROMO_CODES -
RAISELY_LIST_SEGMENTS -
RAISELY_LIST_SUBSCRIPTIONS2 -
RAISELY_LIST_TAGS -
RAISELY_LIST_USER_DONATIONS -
RAISELY_LIST_USER_INTERACTIONS -
RAISELY_LIST_USER_SUBSCRIPTIONS -
RAISELY_LIST_WEBHOOKS -
RAISELY_MOVE_DONATION -
RAISELY_POST_LOGOUT -
RAISELY_POST_USERS -
RAISELY_UPDATE_CAMPAIGN -
RAISELY_UPDATE_CAMPAIGN_CONFIG -
RAISELY_UPDATE_EXERCISE_LOG -
RAISELY_UPDATE_POST -
RAISELY_UPDATE_PROFILE -
RAISELY_UPDATE_USER -
RAISELY_UPDATE_WEBHOOK -
RAISELY_UPLOAD_CAMPAIGN_MEDIA -
RAISELY_UPSERT_USER
Build with Raisely
Open OverSkill, describe what you want to build, and reference Raisely in your prompt — the AI will wire up the integration automatically.