KosmoKrator

productivity

Lever CLI for AI Agents

Use the Lever CLI from KosmoKrator to call Lever tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

Lever CLI Setup

Lever can be configured headlessly with `kosmokrator integrations:configure lever`.

Install, configure, and verify
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure lever --enable --read allow --write ask --json
kosmokrator integrations:doctor lever --json
kosmokrator integrations:status --json

Credentials

Authentication type: API token api_token. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

KeyEnv varTypeRequiredLabel
api_key LEVER_API_KEY Secret secret no Postings API Key
site LEVER_SITE Text text no Test Site
url LEVER_URL URL url no API Base URL
data_url LEVER_DATA_URL URL url no Data API Base URL

Command Patterns

The generic command is stable across every integration. The provider shortcut is shorter for humans.

Generic CLI call
kosmo integrations:call lever.lever_list_postings '{"site":"example_site","mode":"example_mode","skip":1,"limit":1,"location":"example_location","commitment":"example_commitment","team":"example_team","department":"example_department"}' --json
Provider shortcut
kosmo integrations:lever lever_list_postings '{"site":"example_site","mode":"example_mode","skip":1,"limit":1,"location":"example_location","commitment":"example_commitment","team":"example_team","department":"example_department"}' --json

Discovery

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

Discovery commands
kosmo integrations:docs lever --json
kosmo integrations:docs lever.lever_list_postings --json
kosmo integrations:schema lever.lever_list_postings --json
kosmo integrations:search "Lever" --json
kosmo integrations:list --json

Automation Contexts

The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.

CLI Functions

Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.

lever.lever_list_postings

List published Lever job postings for a site. Official Lever endpoint: GET /v0/postings/{site} Supports pagination, output mode, grouping, and filters for location, commitment, team, department, and level.

Read read
Parameters
site, mode, skip, limit, location, commitment, team, department, level, group, css, resize, query
Generic call
kosmo integrations:call lever.lever_list_postings '{"site":"example_site","mode":"example_mode","skip":1,"limit":1,"location":"example_location","commitment":"example_commitment","team":"example_team","department":"example_department"}' --json
Shortcut
kosmo integrations:lever lever_list_postings '{"site":"example_site","mode":"example_mode","skip":1,"limit":1,"location":"example_location","commitment":"example_commitment","team":"example_team","department":"example_department"}' --json

lever.lever_get_posting

Get a single published Lever job posting by ID. Official Lever endpoint: GET /v0/postings/{site}/{posting_id} Returns JSON only.

Read read
Parameters
site, posting_id
Generic call
kosmo integrations:call lever.lever_get_posting '{"site":"example_site","posting_id":"example_posting_id"}' --json
Shortcut
kosmo integrations:lever lever_get_posting '{"site":"example_site","posting_id":"example_posting_id"}' --json

lever.lever_apply_to_posting

Submit a candidate application to a Lever posting. Official Lever endpoint: POST /v0/postings/{site}/{posting_id}?key={api_key} Requires a Lever Postings API key. The JSON body must include name and email, and may include phone, org, urls, comments, silent, source, ip, timezone, userAgent, acceptLanguage, referer, consent, and opportunityLocation.

Write write
Parameters
site, posting_id, body
Generic call
kosmo integrations:call lever.lever_apply_to_posting '{"site":"example_site","posting_id":"example_posting_id","body":"example_body"}' --json
Shortcut
kosmo integrations:lever lever_apply_to_posting '{"site":"example_site","posting_id":"example_posting_id","body":"example_body"}' --json

lever.lever_data_api_get

Call a safe relative Lever Data API path with GET.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_data_api_get '{}' --json
Shortcut
kosmo integrations:lever lever_data_api_get '{}' --json

lever.lever_data_api_post

Call a safe relative Lever Data API path with POST.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_data_api_post '{}' --json
Shortcut
kosmo integrations:lever lever_data_api_post '{}' --json

lever.lever_data_api_put

Call a safe relative Lever Data API path with PUT.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_data_api_put '{}' --json
Shortcut
kosmo integrations:lever lever_data_api_put '{}' --json

lever.lever_data_api_delete

Call a safe relative Lever Data API path with DELETE.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_data_api_delete '{}' --json
Shortcut
kosmo integrations:lever lever_data_api_delete '{}' --json

lever.lever_list_data_opportunities

List authenticated Lever opportunities.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_data_opportunities '{}' --json
Shortcut
kosmo integrations:lever lever_list_data_opportunities '{}' --json

lever.lever_get_data_opportunity

Retrieve one authenticated Lever opportunity.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_data_opportunity '{}' --json
Shortcut
kosmo integrations:lever lever_get_data_opportunity '{}' --json

lever.lever_create_opportunity

Create a Lever opportunity.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_create_opportunity '{}' --json
Shortcut
kosmo integrations:lever lever_create_opportunity '{}' --json

lever.lever_list_deleted_opportunities

List deleted Lever opportunities.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_deleted_opportunities '{}' --json
Shortcut
kosmo integrations:lever lever_list_deleted_opportunities '{}' --json

lever.lever_update_opportunity_stage

Move an opportunity to another stage.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_update_opportunity_stage '{}' --json
Shortcut
kosmo integrations:lever lever_update_opportunity_stage '{}' --json

lever.lever_update_opportunity_archive

Archive or unarchive an opportunity.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_update_opportunity_archive '{}' --json
Shortcut
kosmo integrations:lever lever_update_opportunity_archive '{}' --json

lever.lever_add_opportunity_tags

Add tags to an opportunity.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_add_opportunity_tags '{}' --json
Shortcut
kosmo integrations:lever lever_add_opportunity_tags '{}' --json

lever.lever_remove_opportunity_tags

Remove tags from an opportunity.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_remove_opportunity_tags '{}' --json
Shortcut
kosmo integrations:lever lever_remove_opportunity_tags '{}' --json

lever.lever_add_opportunity_sources

Add sources to an opportunity.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_add_opportunity_sources '{}' --json
Shortcut
kosmo integrations:lever lever_add_opportunity_sources '{}' --json

lever.lever_remove_opportunity_sources

Remove sources from an opportunity.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_remove_opportunity_sources '{}' --json
Shortcut
kosmo integrations:lever lever_remove_opportunity_sources '{}' --json

lever.lever_add_opportunity_links

Add links to an opportunity.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_add_opportunity_links '{}' --json
Shortcut
kosmo integrations:lever lever_add_opportunity_links '{}' --json

lever.lever_remove_opportunity_links

Remove links from an opportunity.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_remove_opportunity_links '{}' --json
Shortcut
kosmo integrations:lever lever_remove_opportunity_links '{}' --json

lever.lever_list_opportunity_applications

List applications for an opportunity.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_opportunity_applications '{}' --json
Shortcut
kosmo integrations:lever lever_list_opportunity_applications '{}' --json

lever.lever_get_opportunity_application

Retrieve one opportunity application.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_opportunity_application '{}' --json
Shortcut
kosmo integrations:lever lever_get_opportunity_application '{}' --json

lever.lever_list_deleted_applications

List deleted applications.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_deleted_applications '{}' --json
Shortcut
kosmo integrations:lever lever_list_deleted_applications '{}' --json

lever.lever_list_opportunity_feedback

List feedback forms for an opportunity.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_opportunity_feedback '{}' --json
Shortcut
kosmo integrations:lever lever_list_opportunity_feedback '{}' --json

lever.lever_get_opportunity_feedback

Retrieve one opportunity feedback form.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_opportunity_feedback '{}' --json
Shortcut
kosmo integrations:lever lever_get_opportunity_feedback '{}' --json

lever.lever_create_opportunity_feedback

Create feedback for an opportunity.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_create_opportunity_feedback '{}' --json
Shortcut
kosmo integrations:lever lever_create_opportunity_feedback '{}' --json

lever.lever_update_opportunity_feedback

Update opportunity feedback.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_update_opportunity_feedback '{}' --json
Shortcut
kosmo integrations:lever lever_update_opportunity_feedback '{}' --json

lever.lever_delete_opportunity_feedback

Delete opportunity feedback.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_delete_opportunity_feedback '{}' --json
Shortcut
kosmo integrations:lever lever_delete_opportunity_feedback '{}' --json

lever.lever_list_opportunity_notes

List notes for an opportunity.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_opportunity_notes '{}' --json
Shortcut
kosmo integrations:lever lever_list_opportunity_notes '{}' --json

lever.lever_get_opportunity_note

Retrieve one opportunity note.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_opportunity_note '{}' --json
Shortcut
kosmo integrations:lever lever_get_opportunity_note '{}' --json

lever.lever_create_opportunity_note

Create a note on an opportunity.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_create_opportunity_note '{}' --json
Shortcut
kosmo integrations:lever lever_create_opportunity_note '{}' --json

lever.lever_update_opportunity_note

Update an opportunity note.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_update_opportunity_note '{}' --json
Shortcut
kosmo integrations:lever lever_update_opportunity_note '{}' --json

lever.lever_delete_opportunity_note

Delete an opportunity note.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_delete_opportunity_note '{}' --json
Shortcut
kosmo integrations:lever lever_delete_opportunity_note '{}' --json

lever.lever_list_opportunity_files

List files on an opportunity.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_opportunity_files '{}' --json
Shortcut
kosmo integrations:lever lever_list_opportunity_files '{}' --json

lever.lever_get_opportunity_file

Retrieve opportunity file metadata.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_opportunity_file '{}' --json
Shortcut
kosmo integrations:lever lever_get_opportunity_file '{}' --json

lever.lever_download_opportunity_file

Download an opportunity file.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_download_opportunity_file '{}' --json
Shortcut
kosmo integrations:lever lever_download_opportunity_file '{}' --json

lever.lever_create_opportunity_file

Attach file metadata to an opportunity.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_create_opportunity_file '{}' --json
Shortcut
kosmo integrations:lever lever_create_opportunity_file '{}' --json

lever.lever_delete_opportunity_file

Delete an opportunity file.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_delete_opportunity_file '{}' --json
Shortcut
kosmo integrations:lever lever_delete_opportunity_file '{}' --json

lever.lever_list_opportunity_file_actions

List file actions for an opportunity.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_opportunity_file_actions '{}' --json
Shortcut
kosmo integrations:lever lever_list_opportunity_file_actions '{}' --json

lever.lever_list_opportunity_resumes

List resumes on an opportunity.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_opportunity_resumes '{}' --json
Shortcut
kosmo integrations:lever lever_list_opportunity_resumes '{}' --json

lever.lever_get_opportunity_resume

Retrieve opportunity resume metadata.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_opportunity_resume '{}' --json
Shortcut
kosmo integrations:lever lever_get_opportunity_resume '{}' --json

lever.lever_download_opportunity_resume

Download an opportunity resume.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_download_opportunity_resume '{}' --json
Shortcut
kosmo integrations:lever lever_download_opportunity_resume '{}' --json

lever.lever_list_opportunity_forms

List forms on an opportunity.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_opportunity_forms '{}' --json
Shortcut
kosmo integrations:lever lever_list_opportunity_forms '{}' --json

lever.lever_get_opportunity_form

Retrieve one opportunity form.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_opportunity_form '{}' --json
Shortcut
kosmo integrations:lever lever_get_opportunity_form '{}' --json

lever.lever_create_opportunity_form

Create an opportunity form.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_create_opportunity_form '{}' --json
Shortcut
kosmo integrations:lever lever_create_opportunity_form '{}' --json

lever.lever_list_opportunity_interviews

List interviews for an opportunity.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_opportunity_interviews '{}' --json
Shortcut
kosmo integrations:lever lever_list_opportunity_interviews '{}' --json

lever.lever_get_opportunity_interview

Retrieve one opportunity interview.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_opportunity_interview '{}' --json
Shortcut
kosmo integrations:lever lever_get_opportunity_interview '{}' --json

lever.lever_create_opportunity_interview

Create an opportunity interview.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_create_opportunity_interview '{}' --json
Shortcut
kosmo integrations:lever lever_create_opportunity_interview '{}' --json

lever.lever_update_opportunity_interview

Update an opportunity interview.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_update_opportunity_interview '{}' --json
Shortcut
kosmo integrations:lever lever_update_opportunity_interview '{}' --json

lever.lever_delete_opportunity_interview

Delete an opportunity interview.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_delete_opportunity_interview '{}' --json
Shortcut
kosmo integrations:lever lever_delete_opportunity_interview '{}' --json

lever.lever_list_opportunity_panels

List interview panels for an opportunity.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_opportunity_panels '{}' --json
Shortcut
kosmo integrations:lever lever_list_opportunity_panels '{}' --json

lever.lever_get_opportunity_panel

Retrieve one interview panel.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_opportunity_panel '{}' --json
Shortcut
kosmo integrations:lever lever_get_opportunity_panel '{}' --json

lever.lever_create_opportunity_panel

Create an interview panel.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_create_opportunity_panel '{}' --json
Shortcut
kosmo integrations:lever lever_create_opportunity_panel '{}' --json

lever.lever_update_opportunity_panel

Update an interview panel.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_update_opportunity_panel '{}' --json
Shortcut
kosmo integrations:lever lever_update_opportunity_panel '{}' --json

lever.lever_delete_opportunity_panel

Delete an interview panel.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_delete_opportunity_panel '{}' --json
Shortcut
kosmo integrations:lever lever_delete_opportunity_panel '{}' --json

lever.lever_list_opportunity_referrals

List referrals for an opportunity.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_opportunity_referrals '{}' --json
Shortcut
kosmo integrations:lever lever_list_opportunity_referrals '{}' --json

lever.lever_get_opportunity_referral

Retrieve one opportunity referral.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_opportunity_referral '{}' --json
Shortcut
kosmo integrations:lever lever_get_opportunity_referral '{}' --json

lever.lever_list_opportunity_offers

List offers for an opportunity.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_opportunity_offers '{}' --json
Shortcut
kosmo integrations:lever lever_list_opportunity_offers '{}' --json

lever.lever_download_opportunity_offer

Download an opportunity offer file.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_download_opportunity_offer '{}' --json
Shortcut
kosmo integrations:lever lever_download_opportunity_offer '{}' --json

lever.lever_list_data_postings

List authenticated Lever postings.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_data_postings '{}' --json
Shortcut
kosmo integrations:lever lever_list_data_postings '{}' --json

lever.lever_get_data_posting

Retrieve one authenticated Lever posting.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_data_posting '{}' --json
Shortcut
kosmo integrations:lever lever_get_data_posting '{}' --json

lever.lever_create_data_posting

Create a Lever posting.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_create_data_posting '{}' --json
Shortcut
kosmo integrations:lever lever_create_data_posting '{}' --json

lever.lever_update_data_posting

Update a Lever posting.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_update_data_posting '{}' --json
Shortcut
kosmo integrations:lever lever_update_data_posting '{}' --json

lever.lever_list_deleted_postings

List deleted postings.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_deleted_postings '{}' --json
Shortcut
kosmo integrations:lever lever_list_deleted_postings '{}' --json

lever.lever_get_posting_apply_form

Retrieve a posting application form.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_posting_apply_form '{}' --json
Shortcut
kosmo integrations:lever lever_get_posting_apply_form '{}' --json

lever.lever_apply_data_posting

Submit an application through the authenticated Lever Data API.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_apply_data_posting '{}' --json
Shortcut
kosmo integrations:lever lever_apply_data_posting '{}' --json

lever.lever_list_posting_users

List users associated with a posting.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_posting_users '{}' --json
Shortcut
kosmo integrations:lever lever_list_posting_users '{}' --json

lever.lever_get_diversity_survey

Retrieve diversity survey questions for a posting.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_diversity_survey '{}' --json
Shortcut
kosmo integrations:lever lever_get_diversity_survey '{}' --json

lever.lever_list_users

List Lever users.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_users '{}' --json
Shortcut
kosmo integrations:lever lever_list_users '{}' --json

lever.lever_get_user

Retrieve one Lever user.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_user '{}' --json
Shortcut
kosmo integrations:lever lever_get_user '{}' --json

lever.lever_create_user

Create a Lever user.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_create_user '{}' --json
Shortcut
kosmo integrations:lever lever_create_user '{}' --json

lever.lever_update_user

Update a Lever user.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_update_user '{}' --json
Shortcut
kosmo integrations:lever lever_update_user '{}' --json

lever.lever_deactivate_user

Deactivate a Lever user.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_deactivate_user '{}' --json
Shortcut
kosmo integrations:lever lever_deactivate_user '{}' --json

lever.lever_reactivate_user

Reactivate a Lever user.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_reactivate_user '{}' --json
Shortcut
kosmo integrations:lever lever_reactivate_user '{}' --json

lever.lever_get_contact

Retrieve one Lever contact.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_contact '{}' --json
Shortcut
kosmo integrations:lever lever_get_contact '{}' --json

lever.lever_update_contact

Update a Lever contact.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_update_contact '{}' --json
Shortcut
kosmo integrations:lever lever_update_contact '{}' --json

lever.lever_list_archive_reasons

List archive reasons.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_archive_reasons '{}' --json
Shortcut
kosmo integrations:lever lever_list_archive_reasons '{}' --json

lever.lever_get_archive_reason

Retrieve one archive reason.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_archive_reason '{}' --json
Shortcut
kosmo integrations:lever lever_get_archive_reason '{}' --json

lever.lever_list_stages

List pipeline stages.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_stages '{}' --json
Shortcut
kosmo integrations:lever lever_list_stages '{}' --json

lever.lever_get_stage

Retrieve one pipeline stage.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_stage '{}' --json
Shortcut
kosmo integrations:lever lever_get_stage '{}' --json

lever.lever_list_disposition_stages

List disposition stages.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_disposition_stages '{}' --json
Shortcut
kosmo integrations:lever lever_list_disposition_stages '{}' --json

lever.lever_list_sources

List source values.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_sources '{}' --json
Shortcut
kosmo integrations:lever lever_list_sources '{}' --json

lever.lever_list_tags

List tag values.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_tags '{}' --json
Shortcut
kosmo integrations:lever lever_list_tags '{}' --json

lever.lever_list_audit_events

List audit events.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_audit_events '{}' --json
Shortcut
kosmo integrations:lever lever_list_audit_events '{}' --json

lever.lever_list_feedback_templates

List feedback templates.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_feedback_templates '{}' --json
Shortcut
kosmo integrations:lever lever_list_feedback_templates '{}' --json

lever.lever_get_feedback_template

Retrieve one feedback template.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_feedback_template '{}' --json
Shortcut
kosmo integrations:lever lever_get_feedback_template '{}' --json

lever.lever_create_feedback_template

Create a feedback template.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_create_feedback_template '{}' --json
Shortcut
kosmo integrations:lever lever_create_feedback_template '{}' --json

lever.lever_update_feedback_template

Update a feedback template.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_update_feedback_template '{}' --json
Shortcut
kosmo integrations:lever lever_update_feedback_template '{}' --json

lever.lever_delete_feedback_template

Delete a feedback template.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_delete_feedback_template '{}' --json
Shortcut
kosmo integrations:lever lever_delete_feedback_template '{}' --json

lever.lever_list_form_templates

List form templates.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_form_templates '{}' --json
Shortcut
kosmo integrations:lever lever_list_form_templates '{}' --json

lever.lever_get_form_template

Retrieve one form template.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_form_template '{}' --json
Shortcut
kosmo integrations:lever lever_get_form_template '{}' --json

lever.lever_create_form_template

Create a form template.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_create_form_template '{}' --json
Shortcut
kosmo integrations:lever lever_create_form_template '{}' --json

lever.lever_update_form_template

Update a form template.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_update_form_template '{}' --json
Shortcut
kosmo integrations:lever lever_update_form_template '{}' --json

lever.lever_delete_form_template

Delete a form template.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_delete_form_template '{}' --json
Shortcut
kosmo integrations:lever lever_delete_form_template '{}' --json

lever.lever_list_profile_forms

List profile forms.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_profile_forms '{}' --json
Shortcut
kosmo integrations:lever lever_list_profile_forms '{}' --json

lever.lever_list_requisitions

List requisitions.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_requisitions '{}' --json
Shortcut
kosmo integrations:lever lever_list_requisitions '{}' --json

lever.lever_get_requisition

Retrieve one requisition.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_requisition '{}' --json
Shortcut
kosmo integrations:lever lever_get_requisition '{}' --json

lever.lever_create_requisition

Create a requisition.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_create_requisition '{}' --json
Shortcut
kosmo integrations:lever lever_create_requisition '{}' --json

lever.lever_update_requisition

Update a requisition.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_update_requisition '{}' --json
Shortcut
kosmo integrations:lever lever_update_requisition '{}' --json

lever.lever_delete_requisition

Delete a requisition.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_delete_requisition '{}' --json
Shortcut
kosmo integrations:lever lever_delete_requisition '{}' --json

lever.lever_list_requisition_fields

List requisition fields.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_requisition_fields '{}' --json
Shortcut
kosmo integrations:lever lever_list_requisition_fields '{}' --json

lever.lever_get_requisition_field

Retrieve one requisition field.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_get_requisition_field '{}' --json
Shortcut
kosmo integrations:lever lever_get_requisition_field '{}' --json

lever.lever_create_requisition_field

Create a requisition field.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_create_requisition_field '{}' --json
Shortcut
kosmo integrations:lever lever_create_requisition_field '{}' --json

lever.lever_update_requisition_field

Update a requisition field.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_update_requisition_field '{}' --json
Shortcut
kosmo integrations:lever lever_update_requisition_field '{}' --json

lever.lever_delete_requisition_field

Delete a requisition field.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_delete_requisition_field '{}' --json
Shortcut
kosmo integrations:lever lever_delete_requisition_field '{}' --json

lever.lever_create_requisition_field_option

Create a requisition field option.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_create_requisition_field_option '{}' --json
Shortcut
kosmo integrations:lever lever_create_requisition_field_option '{}' --json

lever.lever_update_requisition_field_options

Update requisition field options.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_update_requisition_field_options '{}' --json
Shortcut
kosmo integrations:lever lever_update_requisition_field_options '{}' --json

lever.lever_delete_requisition_field_options

Delete requisition field options.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_delete_requisition_field_options '{}' --json
Shortcut
kosmo integrations:lever lever_delete_requisition_field_options '{}' --json

lever.lever_create_upload

Create an upload for files used by Lever records.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_create_upload '{}' --json
Shortcut
kosmo integrations:lever lever_create_upload '{}' --json

lever.lever_list_webhooks

List webhooks.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_webhooks '{}' --json
Shortcut
kosmo integrations:lever lever_list_webhooks '{}' --json

lever.lever_create_webhook

Create a webhook.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_create_webhook '{}' --json
Shortcut
kosmo integrations:lever lever_create_webhook '{}' --json

lever.lever_update_webhooks

Update one or more API-created webhooks.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_update_webhooks '{}' --json
Shortcut
kosmo integrations:lever lever_update_webhooks '{}' --json

lever.lever_delete_webhook

Delete a webhook.

Write write
Parameters
none
Generic call
kosmo integrations:call lever.lever_delete_webhook '{}' --json
Shortcut
kosmo integrations:lever lever_delete_webhook '{}' --json

lever.lever_list_eeo_responses_pii

List EEO response PII records.

Read read
Parameters
none
Generic call
kosmo integrations:call lever.lever_list_eeo_responses_pii '{}' --json
Shortcut
kosmo integrations:lever lever_list_eeo_responses_pii '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

lever.lever_list_postings 13 parameters
Schema command
kosmo integrations:schema lever.lever_list_postings --json
ParameterTypeRequiredDescription
site string yes Lever site slug, usually the company name from jobs.lever.co/{site}.
mode string no Output mode. Use json for structured agent results.
skip integer no Number of postings to skip.
limit integer no Maximum number of postings to return.
location array no Filter by one or more locations. Multiple values are ORed by Lever.
commitment array no Filter by one or more commitment values.
team array no Filter by one or more teams.
department array no Filter by one or more departments.
level string no Filter by level.
group string no Group results by a Lever category.
css string no Iframe mode CSS URL allowed in Lever job site settings.
resize string no Iframe mode resize helper URL allowed in Lever job site settings.
query object no Optional query object. Top-level keys take precedence when both are present.
lever.lever_get_posting 2 parameters
Schema command
kosmo integrations:schema lever.lever_get_posting --json
ParameterTypeRequiredDescription
site string yes Lever site slug, usually the company name from jobs.lever.co/{site}.
posting_id string yes Lever posting ID.
lever.lever_apply_to_posting 3 parameters
Schema command
kosmo integrations:schema lever.lever_apply_to_posting --json
ParameterTypeRequiredDescription
site string yes Lever site slug, usually the company name from jobs.lever.co/{site}.
posting_id string yes Lever posting ID.
body object yes Lever JSON application body. Required fields are name and email; account-specific forms may require more fields.
lever.lever_data_api_get 0 parameters
Schema command
kosmo integrations:schema lever.lever_data_api_get --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_data_api_post 0 parameters
Schema command
kosmo integrations:schema lever.lever_data_api_post --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_data_api_put 0 parameters
Schema command
kosmo integrations:schema lever.lever_data_api_put --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_data_api_delete 0 parameters
Schema command
kosmo integrations:schema lever.lever_data_api_delete --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_data_opportunities 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_data_opportunities --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_data_opportunity 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_data_opportunity --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_create_opportunity 0 parameters
Schema command
kosmo integrations:schema lever.lever_create_opportunity --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_deleted_opportunities 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_deleted_opportunities --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_update_opportunity_stage 0 parameters
Schema command
kosmo integrations:schema lever.lever_update_opportunity_stage --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_update_opportunity_archive 0 parameters
Schema command
kosmo integrations:schema lever.lever_update_opportunity_archive --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_add_opportunity_tags 0 parameters
Schema command
kosmo integrations:schema lever.lever_add_opportunity_tags --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_remove_opportunity_tags 0 parameters
Schema command
kosmo integrations:schema lever.lever_remove_opportunity_tags --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_add_opportunity_sources 0 parameters
Schema command
kosmo integrations:schema lever.lever_add_opportunity_sources --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_remove_opportunity_sources 0 parameters
Schema command
kosmo integrations:schema lever.lever_remove_opportunity_sources --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_opportunity_applications 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_opportunity_applications --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_opportunity_application 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_opportunity_application --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_deleted_applications 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_deleted_applications --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_opportunity_feedback 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_opportunity_feedback --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_opportunity_feedback 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_opportunity_feedback --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_create_opportunity_feedback 0 parameters
Schema command
kosmo integrations:schema lever.lever_create_opportunity_feedback --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_update_opportunity_feedback 0 parameters
Schema command
kosmo integrations:schema lever.lever_update_opportunity_feedback --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_delete_opportunity_feedback 0 parameters
Schema command
kosmo integrations:schema lever.lever_delete_opportunity_feedback --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_opportunity_notes 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_opportunity_notes --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_opportunity_note 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_opportunity_note --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_create_opportunity_note 0 parameters
Schema command
kosmo integrations:schema lever.lever_create_opportunity_note --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_update_opportunity_note 0 parameters
Schema command
kosmo integrations:schema lever.lever_update_opportunity_note --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_delete_opportunity_note 0 parameters
Schema command
kosmo integrations:schema lever.lever_delete_opportunity_note --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_opportunity_files 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_opportunity_files --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_opportunity_file 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_opportunity_file --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_download_opportunity_file 0 parameters
Schema command
kosmo integrations:schema lever.lever_download_opportunity_file --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_create_opportunity_file 0 parameters
Schema command
kosmo integrations:schema lever.lever_create_opportunity_file --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_delete_opportunity_file 0 parameters
Schema command
kosmo integrations:schema lever.lever_delete_opportunity_file --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_opportunity_file_actions 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_opportunity_file_actions --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_opportunity_resumes 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_opportunity_resumes --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_opportunity_resume 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_opportunity_resume --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_download_opportunity_resume 0 parameters
Schema command
kosmo integrations:schema lever.lever_download_opportunity_resume --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_opportunity_forms 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_opportunity_forms --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_opportunity_form 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_opportunity_form --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_create_opportunity_form 0 parameters
Schema command
kosmo integrations:schema lever.lever_create_opportunity_form --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_opportunity_interviews 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_opportunity_interviews --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_opportunity_interview 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_opportunity_interview --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_create_opportunity_interview 0 parameters
Schema command
kosmo integrations:schema lever.lever_create_opportunity_interview --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_update_opportunity_interview 0 parameters
Schema command
kosmo integrations:schema lever.lever_update_opportunity_interview --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_delete_opportunity_interview 0 parameters
Schema command
kosmo integrations:schema lever.lever_delete_opportunity_interview --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_opportunity_panels 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_opportunity_panels --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_opportunity_panel 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_opportunity_panel --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_create_opportunity_panel 0 parameters
Schema command
kosmo integrations:schema lever.lever_create_opportunity_panel --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_update_opportunity_panel 0 parameters
Schema command
kosmo integrations:schema lever.lever_update_opportunity_panel --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_delete_opportunity_panel 0 parameters
Schema command
kosmo integrations:schema lever.lever_delete_opportunity_panel --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_opportunity_referrals 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_opportunity_referrals --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_opportunity_referral 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_opportunity_referral --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_opportunity_offers 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_opportunity_offers --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_download_opportunity_offer 0 parameters
Schema command
kosmo integrations:schema lever.lever_download_opportunity_offer --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_data_postings 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_data_postings --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_data_posting 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_data_posting --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_create_data_posting 0 parameters
Schema command
kosmo integrations:schema lever.lever_create_data_posting --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_update_data_posting 0 parameters
Schema command
kosmo integrations:schema lever.lever_update_data_posting --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_deleted_postings 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_deleted_postings --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_posting_apply_form 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_posting_apply_form --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_apply_data_posting 0 parameters
Schema command
kosmo integrations:schema lever.lever_apply_data_posting --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_posting_users 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_posting_users --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_diversity_survey 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_diversity_survey --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_users 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_users --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_user 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_user --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_create_user 0 parameters
Schema command
kosmo integrations:schema lever.lever_create_user --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_update_user 0 parameters
Schema command
kosmo integrations:schema lever.lever_update_user --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_deactivate_user 0 parameters
Schema command
kosmo integrations:schema lever.lever_deactivate_user --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_reactivate_user 0 parameters
Schema command
kosmo integrations:schema lever.lever_reactivate_user --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_contact 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_contact --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_update_contact 0 parameters
Schema command
kosmo integrations:schema lever.lever_update_contact --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_archive_reasons 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_archive_reasons --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_archive_reason 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_archive_reason --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_stages 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_stages --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_stage 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_stage --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_disposition_stages 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_disposition_stages --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_sources 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_sources --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_tags 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_tags --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_audit_events 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_audit_events --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_feedback_templates 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_feedback_templates --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_feedback_template 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_feedback_template --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_create_feedback_template 0 parameters
Schema command
kosmo integrations:schema lever.lever_create_feedback_template --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_update_feedback_template 0 parameters
Schema command
kosmo integrations:schema lever.lever_update_feedback_template --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_delete_feedback_template 0 parameters
Schema command
kosmo integrations:schema lever.lever_delete_feedback_template --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_form_templates 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_form_templates --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_form_template 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_form_template --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_create_form_template 0 parameters
Schema command
kosmo integrations:schema lever.lever_create_form_template --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_update_form_template 0 parameters
Schema command
kosmo integrations:schema lever.lever_update_form_template --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_delete_form_template 0 parameters
Schema command
kosmo integrations:schema lever.lever_delete_form_template --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_profile_forms 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_profile_forms --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_requisitions 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_requisitions --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_requisition 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_requisition --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_create_requisition 0 parameters
Schema command
kosmo integrations:schema lever.lever_create_requisition --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_update_requisition 0 parameters
Schema command
kosmo integrations:schema lever.lever_update_requisition --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_delete_requisition 0 parameters
Schema command
kosmo integrations:schema lever.lever_delete_requisition --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_requisition_fields 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_requisition_fields --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_get_requisition_field 0 parameters
Schema command
kosmo integrations:schema lever.lever_get_requisition_field --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_create_requisition_field 0 parameters
Schema command
kosmo integrations:schema lever.lever_create_requisition_field --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_update_requisition_field 0 parameters
Schema command
kosmo integrations:schema lever.lever_update_requisition_field --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_delete_requisition_field 0 parameters
Schema command
kosmo integrations:schema lever.lever_delete_requisition_field --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_create_requisition_field_option 0 parameters
Schema command
kosmo integrations:schema lever.lever_create_requisition_field_option --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_update_requisition_field_options 0 parameters
Schema command
kosmo integrations:schema lever.lever_update_requisition_field_options --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_delete_requisition_field_options 0 parameters
Schema command
kosmo integrations:schema lever.lever_delete_requisition_field_options --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_create_upload 0 parameters
Schema command
kosmo integrations:schema lever.lever_create_upload --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_webhooks 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_webhooks --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_create_webhook 0 parameters
Schema command
kosmo integrations:schema lever.lever_create_webhook --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_update_webhooks 0 parameters
Schema command
kosmo integrations:schema lever.lever_update_webhooks --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_delete_webhook 0 parameters
Schema command
kosmo integrations:schema lever.lever_delete_webhook --json
ParameterTypeRequiredDescription
No parameters.
lever.lever_list_eeo_responses_pii 0 parameters
Schema command
kosmo integrations:schema lever.lever_list_eeo_responses_pii --json
ParameterTypeRequiredDescription
No parameters.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.