with 15Five and QuickBooks?
Emit new event for each new 1-on-1 created. See the documentation
Emit new event for each new high five received. See the documentation
The 15Five API grants access to a performance management platform designed to help employees grow and achieve their goals. With Pipedream, you can leverage this API to automate feedback collection, synchronize performance data across various systems, and trigger actions based on employee responses. By interconnecting 15Five with other apps, you can streamline HR processes, enhance employee engagement strategies, and maintain a pulse on organizational health.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { f15five: { type: "app", app: "f15five", } }, async run({steps, $}) { return await axios($, { url: `https://my.15five.com/api/public/user/`, headers: { "Authorization": `${this.f15five.$auth.api_key}`, }, }) }, }) The QuickBooks API allows for streamlined financial management within Pipedream's ecosystem, enabling automated accounting and data syncing across various platforms. With this API, you can manipulate invoices, manage sales receipts, handle expenses, and synchronize customer data. It's a robust tool for financial oversight and automation that can save time and reduce errors for businesses of all sizes.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { quickbooks: { type: "app", app: "quickbooks", } }, async run({steps, $}) { return await axios($, { url: `https://accounts.platform.intuit.com/v1/openid_connect/userinfo`, headers: { Authorization: `Bearer ${this.quickbooks.$auth.oauth_access_token}`, "accept": `application/json`, "content-type": `application/json`, }, }) }, })