Take Digital Signatures in PDF & forms | Best Digital software | Affordable Digital Signature Software.
Emit new event when a filled form response is received.
Emit new event when a PDF document is fully signed. See the documentation
Emit new event when a new form template response is filled.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
Enables form dispatching to a specific recipient. See the documentation
Dispatch a predefined template to obtain a signature. See the documentation
Boloforms is a powerful tool designed to handle form submissions without the need for a server. With the Boloforms API, you can dynamically process, store, and manage form submissions. By integrating Boloforms with Pipedream, you can automate workflows, trigger actions in other apps, and streamline data management, making it an excellent choice for businesses and developers looking to enhance their form handling capabilities. Pipedream's capabilities allow you to connect Boloforms data with numerous other services like email platforms, databases, and CRM systems to enhance functionality and automate routine tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
boloforms: {
type: "app",
app: "boloforms",
}
},
async run({ steps, $ }) {
return await axios($, {
url: "https://signature-backend.boloforms.com/api/v1/signature/get-all-forms/v1",
headers: {
"x-api-key": this.boloforms.$auth.api_key,
"workspaceId": this.boloforms.$auth.workspace_id,
},
params: {
currentUserEmail: this.boloforms.$auth.email,
page: 1,
filter: "ALL",
},
});
},
});
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
},
})