Developer docs

Erpnext integration

Free and open-source integrated Enterprise Resource Planning software built on…

Updated June 2026 50 actions available

Provider
erpnext
Category
Other
Setup
User-supplied API key
Actions
50 available

Quick start

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

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

Show all 50 actions
  • ERPNEXT_GET_COUNT
  • ERPNEXT_GET_DOCTYPE_META
  • ERPNEXT_GET_DOCUMENT
  • ERPNEXT_GET_DOC_WITH_META
  • ERPNEXT_GET_EXCHANGE_RATE
  • ERPNEXT_GET_FISCAL_YEAR
  • ERPNEXT_GET_FRAMEWORK_VERSION
  • ERPNEXT_GET_ITEM_DETAILS
  • ERPNEXT_GET_LIST
  • ERPNEXT_GET_LOGGED_USER
  • ERPNEXT_GET_PARTY_DETAILS
  • ERPNEXT_GET_PAYMENT_ENTRY
  • ERPNEXT_GET_STOCK_BALANCE
  • ERPNEXT_GET_TIMEZONES
  • ERPNEXT_GET_USER_ROLES
  • ERPNEXT_GET_VALUE
  • ERPNEXT_GET_WORKFLOW_TRANSITIONS
  • ERPNEXT_INSERT_DOCUMENT
  • ERPNEXT_INSERT_MANY
  • ERPNEXT_LIST_DOCTYPES
  • ERPNEXT_LIST_DOCUMENTS
  • ERPNEXT_LIST_EMPLOYEES
  • ERPNEXT_LIST_PROJECTS
  • ERPNEXT_LIST_TIMESHEETS
  • ERPNEXT_LIST_WEBHOOKS
  • ERPNEXT_MAKE_DELIVERY_NOTE
  • ERPNEXT_MAKE_PURCHASE_ORDER
  • ERPNEXT_MAKE_SALES_INVOICE
  • ERPNEXT_MAKE_STOCK_ENTRY
  • ERPNEXT_PING
  • ERPNEXT_RENAME_DOC
  • ERPNEXT_SAVE_DOCS
  • ERPNEXT_SAVE_DOCUMENT
  • ERPNEXT_SEARCH_GLOBAL
  • ERPNEXT_SEARCH_LINK
  • ERPNEXT_SET_VALUE
  • ERPNEXT_SUBMIT_DOCUMENT
  • ERPNEXT_UPDATE_DOCUMENT

Build with Erpnext

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