An ecosystem for the growth of your entire team 🌱
The Bloom Growth API provides a suite of tools for business management and growth, focusing on customer relationships, project management, and data analysis. With Pipedream, you can leverage this API to create automated workflows that integrate Bloom Growth's functionalities with other apps, streamline processes, and enhance data-driven decision-making.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bloom_growth: {
type: "app",
app: "bloom_growth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.bloomgrowth.com/api/v1/users/mine`,
headers: {
Authorization: `Bearer ${this.bloom_growth.$auth.oauth_access_token}`,
"Accept": `application/json`,
},
})
},
})
The Delay API in Pipedream is a built-in function that allows you to pause a workflow for a specified amount of time. This can be incredibly useful when you need to stagger API calls to avoid rate limits, wait for an external process to complete, or simply introduce a delay between actions in a sequence. With precision up to milliseconds, the Delay API provides a simple yet powerful tool for managing timing in automation workflows.
export default defineComponent({
async run({steps, $}) {
// Specify the amount of time to delay your workflow in milliseconds
return $.flow.delay(5000)
},
})