Pushover integration
Pushover is a service that enables real-time notifications to your devices…
- Provider
- pushover
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 29 available
Quick start
Call Pushover from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Pushover'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(
"PUSHOVER_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 Pushover 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
29 actions exposed via the
Pushover integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
PUSHOVER_CANCEL_RECEIPT_RETRIES -
PUSHOVER_CANCEL_RETRIES_BY_TAG -
PUSHOVER_CLIENT_ACK_DELETE_UP_TO_ID -
PUSHOVER_CLIENT_FETCH_MESSAGES -
PUSHOVER_CLIENT_LOGIN -
PUSHOVER_CLIENT_REALTIME_WEBSOCKET -
PUSHOVER_CLIENT_REGISTER_DEVICE -
PUSHOVER_GET_APP_ICON_IMAGE -
PUSHOVER_GET_APP_LIMITS -
PUSHOVER_GET_APP_TOKEN -
PUSHOVER_GET_RECEIPT_STATUS -
PUSHOVER_GET_TEAM_API_TOKEN
Show all 29 actions
-
PUSHOVER_GLANCES_UPDATE -
PUSHOVER_GROUP_ADD_USER -
PUSHOVER_GROUP_CREATE -
PUSHOVER_GROUP_DISABLE_USER -
PUSHOVER_GROUP_ENABLE_USER -
PUSHOVER_GROUP_GET -
PUSHOVER_GROUP_LIST -
PUSHOVER_GROUP_REMOVE_USER -
PUSHOVER_GROUP_RENAME -
PUSHOVER_LICENSE_ASSIGN -
PUSHOVER_LICENSE_CHECK_CREDITS -
PUSHOVER_SEND_MESSAGE -
PUSHOVER_STORE_TEAM_API_TOKEN -
PUSHOVER_SUBSCRIPTION_FLOW -
PUSHOVER_TEAMS_ADD_USER -
PUSHOVER_TEAMS_REMOVE_USER -
PUSHOVER_VALIDATE_USER_OR_GROUP
Build with Pushover
Open OverSkill, describe what you want to build, and reference Pushover in your prompt — the AI will wire up the integration automatically.