Developer docs

Scheduleonce integration

Scheduling platform for capturing, qualifying, and engaging with inbound leads

Updated June 2026 27 actions available

Provider
scheduleonce
Category
Other
Setup
User-supplied API key
Actions
27 available

Quick start

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

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

Show all 27 actions
  • SCHEDULEONCE_GET_SINGLE_USER
  • SCHEDULEONCE_GET_USER_SCHEDULING_AVAILABILITY
  • SCHEDULEONCE_LIST_ALL_BOOKING_CALENDARS
  • SCHEDULEONCE_LIST_ALL_BOOKING_PAGES
  • SCHEDULEONCE_LIST_ALL_BOOKINGS
  • SCHEDULEONCE_LIST_ALL_CONTACTS
  • SCHEDULEONCE_LIST_ALL_EVENT_TYPES
  • SCHEDULEONCE_LIST_ALL_MASTER_PAGES
  • SCHEDULEONCE_LIST_ALL_TEAMS
  • SCHEDULEONCE_LIST_ALL_USERS
  • SCHEDULEONCE_MARK_BOOKING_AS_NO_SHOW
  • SCHEDULEONCE_TEST_API_KEY
  • SCHEDULEONCE_UPDATE_CONTACT
  • SCHEDULEONCE_UPDATE_USER
  • SCHEDULEONCE_UPDATE_USER_SCHEDULING_AVAILABILITY

Build with Scheduleonce

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