Frappe

Excellence driven software products + services

Go to site
Explore
/
Apps
/
Frappe

Frappe API Integrations

Build and run workflows using the Frappe API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

The Frappe API can be used to build a variety of applications, including:

  • Web applications
  • Mobile applications
  • Desktop applications
  • FrappeFrameworks
  • Custom Frappe applications
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    frappe: {
      type: "app",
      app: "frappe",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.frappe.$auth.base_url}/api/method/frappe.auth.get_logged_user`,
      auth: {
        username: `${this.frappe.$auth.api_key}`,
        password: `${this.frappe.$auth.api_secret}`,
      },
    })
  },
})

Authentication

Frappe uses API keys for authentication. When you connect your Frappe account, Pipedream securely stores the keys so you can easily authenticate to Frappe APIs in both code and no-code steps.

Your Frappe Base URL is https://{your_frappe_instance} -- such as https://demo.erpnext.com