Pointagram integration
Pointagram is a gamification tool that increases motivation and team…
- Provider
- pointagram
- Category
- Productivity
- Setup
- User-supplied API key
- Actions
- 8 available
Quick start
Call Pointagram from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Pointagram'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(
"POINTAGRAM_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 Pointagram 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
8 actions exposed via the
Pointagram integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
POINTAGRAM_ADD_SCORE -
POINTAGRAM_LIST_COMPETITION_PLAYERS -
POINTAGRAM_LIST_COMPETITIONS -
POINTAGRAM_LIST_PLAYERS -
POINTAGRAM_LIST_SCORE_SERIES -
POINTAGRAM_LIST_SCORE_SERIES_HISTORY -
POINTAGRAM_LIST_SCORE_SERIES_POINT_TYPES -
POINTAGRAM_LIST_TEAMS
Build with Pointagram
Open OverSkill, describe what you want to build, and reference Pointagram in your prompt — the AI will wire up the integration automatically.