Crove.app helps you to automate your repetitive business documents. With Crove you can create your repetitive business documents as intelligent templates that use variables and logical conditions.
The Crove API offers a suite of tools for automating document creation, customization, and management. Using Pipedream's integration capabilities, you can leverage Crove to generate tailored documents based on dynamic data inputs and trigger actions within other applications. Imagine auto-generating contracts when a deal is marked 'won' in a CRM, or creating personalized onboarding paperwork as soon as a new employee is added to your HR system. With Pipedream, you can connect Crove to a multitude of apps to streamline document workflows and enhance productivity.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
crove_app: {
type: "app",
app: "crove_app",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://v2.api.crove.app/api/integrations/external/templates/`,
headers: {
"Content-Type": `application/json`,
"X-API-KEY": `${this.crove_app.$auth.api_key}`,
},
})
},
})
Develop, run and deploy your Node.js code in Pipedream workflows, using it between no-code steps, with connected accounts, or integrate Data Stores and File Stores.
This includes installing NPM packages, within your code without having to manage a package.json
file or running npm install
.
Below is an example of installing the axios
package in a Pipedream Node.js code step. Pipedream imports the axios
package, performs the API request, and shares the response with subsequent workflow steps:
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})