Developer docs

Lever integration

Lever is an applicant tracking system combining sourcing, CRM functionalities,…

Updated June 2026 64 actions available

Provider
lever
Category
Other
Setup
User-supplied API key
Actions
64 available

Quick start

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

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

Show all 64 actions
  • LEVER_CREATE_UPLOAD
  • LEVER_CREATE_USER
  • LEVER_DEACTIVATE_USER
  • LEVER_DELETE_FORM_TEMPLATE
  • LEVER_DELETE_INTERVIEW
  • LEVER_DELETE_NOTE
  • LEVER_DELETE_PANEL
  • LEVER_DELETE_REQUISITION
  • LEVER_DELETE_REQUISITION_FIELD
  • LEVER_DELETE_REQUISITION_FIELD_OPTION
  • LEVER_DOWNLOAD_FILE
  • LEVER_GET_FILE
  • LEVER_GET_FORM
  • LEVER_GET_FORM_TEMPLATE
  • LEVER_GET_INTERVIEW
  • LEVER_GET_NOTE
  • LEVER_GET_OPPORTUNITY
  • LEVER_GET_PANEL
  • LEVER_GET_REQUISITION
  • LEVER_GET_REQUISITION_FIELD
  • LEVER_GET_STAGE
  • LEVER_GET_USER
  • LEVER_LIST_FILES
  • LEVER_LIST_FORMS
  • LEVER_LIST_FORM_TEMPLATES
  • LEVER_LIST_INTERVIEWS
  • LEVER_LIST_NOTES
  • LEVER_LIST_OFFERS
  • LEVER_LIST_OPPORTUNITIES
  • LEVER_LIST_PANELS
  • LEVER_LIST_POSTINGS
  • LEVER_LIST_REFERRALS
  • LEVER_LIST_REQUISITION_FIELDS
  • LEVER_LIST_REQUISITIONS
  • LEVER_LIST_RESUMES
  • LEVER_LIST_SOURCES
  • LEVER_LIST_STAGES
  • LEVER_LIST_TAGS
  • LEVER_LIST_USERS
  • LEVER_REACTIVATE_USER
  • LEVER_REMOVE_CONTACT_LINKS_BY_OPPORTUNITY
  • LEVER_REMOVE_OPPORTUNITY_SOURCES
  • LEVER_REMOVE_OPPORTUNITY_TAGS
  • LEVER_UPDATE_FORM_TEMPLATE
  • LEVER_UPDATE_INTERVIEW
  • LEVER_UPDATE_NOTE
  • LEVER_UPDATE_PANEL
  • LEVER_UPDATE_REQUISITION
  • LEVER_UPDATE_REQUISITION_FIELD
  • LEVER_UPDATE_REQUISITION_FIELD_OPTION
  • LEVER_UPDATE_USER
  • LEVER_UPLOAD_FILE

Build with Lever

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