← Zoho Forms + BoldSign integrations

Send Document Using Template with BoldSign API on New Response Received (Instant) from Zoho Forms API

Pipedream makes it easy to connect APIs for BoldSign, Zoho Forms and 2,700+ other apps remarkably fast.

Trigger workflow on
New Response Received (Instant) from the Zoho Forms API
Next, do this
Send Document Using Template with the BoldSign API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Zoho Forms trigger and BoldSign action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Response Received (Instant) trigger
    1. Connect your Zoho Forms account
    2. Select a Form Link Name
  3. Configure the Send Document Using Template action
    1. Connect your BoldSign account
    2. Select a Template ID
    3. Optional- Configure Title
    4. Optional- Configure Message
    5. Configure Roles
    6. Optional- Select a Brand ID
    7. Optional- Configure Labels
    8. Optional- Configure Disable Emails
    9. Optional- Configure Disable SMS
    10. Optional- Configure Hide Document ID
    11. Optional- Configure Enable Auto Reminder
    12. Optional- Configure Reminder Days
    13. Optional- Configure Reminder Count
    14. Optional- Select one or more CC
    15. Optional- Configure Expiry Days
    16. Optional- Configure Enable Print and Sign
    17. Optional- Configure Enable Reassign
    18. Optional- Configure Enable Signing Order
    19. Optional- Configure Disable Expiry Alert
    20. Optional- Configure Document Info
    21. Optional- Configure Role Removal Indices
    22. Optional- Select a Document Download Option
    23. Optional- Configure Form Groups
    24. Optional- Configure File Paths or URLs
    25. Optional- Configure File URLs
    26. Optional- Configure Recipient Notification Settings
    27. Optional- Configure Remove Formfields
    28. Optional- Configure Enable Audit Trail Localization
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event when a specific form receive a new response.
Version:0.0.1
Key:zoho_forms-new-response-received-instant

Zoho Forms Overview

Zoho Forms API allows you to automate interactions with your forms and the data you collect. Leveraging Pipedream, you can harness this API to trigger workflows upon new form submissions, manipulate form entries, and sync data with other services. Pipedream’s serverless platform simplifies integrating Zoho Forms with hundreds of other apps, empowering you to create custom, scalable workflows without hosting or managing servers.

Trigger Code

import zohoForms from "../../zoho_forms.app.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  key: "zoho_forms-new-response-received-instant",
  name: "New Response Received (Instant)",
  description: "Emit new event when a specific form receive a new response.",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  props: {
    zohoForms,
    db: "$.service.db",
    http: "$.interface.http",
    formLinkName: {
      propDefinition: [
        zohoForms,
        "formLinkName",
      ],
    },
  },
  methods: {
    setHookId(hookId) {
      this.db.set("hookId", hookId);
    },
    getHookId() {
      return this.db.get("hookId");
    },
  },
  hooks: {
    async activate() {
      const response = await this.zohoForms.createHook({
        params: {
          "webhooks_url": this.http.endpoint,
          "formlinkname": this.formLinkName,
        },
      });

      this.setHookId(response.webhook_id);
    },
    async deactivate() {
      await this.zohoForms.deleteHook({
        params: {
          "webhook_id": this.getHookId(),
          "formlinkname": this.formLinkName,
        },
      });
    },
  },
  async run({ body }) {
    const ts = Date.parse(body.ADDED_TIME_ISO8601);

    this.$emit(body, {
      id: body.IP_ADDRESS + ts,
      summary: "New response received",
      ts: ts,
    });
  },
  sampleEmit,
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
Zoho FormszohoFormsappThis component uses the Zoho Forms app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
Form Link NameformLinkNamestringSelect a value from the drop down menu.

Trigger Authentication

Zoho Forms uses OAuth authentication. When you connect your Zoho Forms account, Pipedream will open a popup window where you can sign into Zoho Forms and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Zoho Forms API.

Pipedream requests the following authorization scopes when you connect your account:

ZohoForms.forms.READ

About Zoho Forms

Build powerful forms for free, share them online, receive instant alerts, and efficiently manage your data with our integrated apps. Focus on your business while Zoho Forms handles the data collection process for you!

Action

Description:Send documents for e-signature using a BoldSign template. [See the documentation](https://developers.boldsign.com/documents/send-document-from-template/?region=us)
Version:0.1.0
Key:boldsign-send-document-template

Action Code

import {
  ConfigurationError, getFileStreamAndMetadata,
} from "@pipedream/platform";
import boldsign from "../../boldsign.app.mjs";
import { DOCUMENT_DOWNLOAD_OPTIONS } from "../../common/constants.mjs";
import { parseObject } from "../../common/utils.mjs";

export default {
  key: "boldsign-send-document-template",
  name: "Send Document Using Template",
  description: "Send documents for e-signature using a BoldSign template. [See the documentation](https://developers.boldsign.com/documents/send-document-from-template/?region=us)",
  version: "0.1.0",
  type: "action",
  props: {
    boldsign,
    templateId: {
      propDefinition: [
        boldsign,
        "templateId",
      ],
    },
    title: {
      type: "string",
      label: "Title",
      description: "The title of the document.",
      optional: true,
    },
    message: {
      type: "string",
      label: "Message",
      description: "A message to include with the document.",
      optional: true,
    },
    roles: {
      type: "string[]",
      label: "Roles",
      description: "A role is simply a placeholder for a real person. For example, if we have a purchase order that will always be signed by two people, one from the company and one from the customer, we can create a template with two roles Customer and Representative. Example: **[{\"roleIndex\": 50,\"signerName\": \"Richard\",\"signerOrder\": 1,\"signerEmail\": \"richard@cubeflakes.com\",\"privateMessage\": \"Please check and sign the document.\",\"authenticationCode\": \"281028\",\"enableEmailOTP\": false,\"signerType\": \"Signer\",\"signerRole\": \"Manager\",\"formFields\": [{\"id\": \"SignField\",\"fieldType\": \"Signature\",\"pageNumber\": 1,\"bounds\": {\"x\": 100,\"y\": 100,\"width\": 100,\"height\": 50},\"isRequired\": true}]**.",
    },
    brandId: {
      propDefinition: [
        boldsign,
        "brandId",
      ],
      optional: true,
    },
    labels: {
      propDefinition: [
        boldsign,
        "labels",
      ],
      optional: true,
    },
    disableEmails: {
      type: "boolean",
      label: "Disable Emails",
      description: "Disable sending emails to recipients.",
      optional: true,
    },
    disableSMS: {
      type: "boolean",
      label: "Disable SMS",
      description: "Disable sending SMS to recipients.",
      optional: true,
    },
    hideDocumentId: {
      type: "boolean",
      label: "Hide Document ID",
      description: "Decides whether the document ID should be hidden or not.",
      optional: true,
    },
    enableAutoReminder: {
      type: "boolean",
      label: "Enable Auto Reminder",
      description: "Enable automatic reminders.",
      reloadProps: true,
      optional: true,
    },
    reminderDays: {
      type: "integer",
      label: "Reminder Days",
      description: "Number of days between reminders.",
      hidden: true,
      optional: true,
    },
    reminderCount: {
      type: "integer",
      label: "Reminder Count",
      description: "Number of reminder attempts.",
      hidden: true,
      optional: true,
    },
    cc: {
      propDefinition: [
        boldsign,
        "cc",
      ],
      optional: true,
    },
    expiryDays: {
      type: "integer",
      label: "Expiry Days",
      description: "Number of days before document expires.",
      optional: true,
    },
    enablePrintAndSign: {
      type: "boolean",
      label: "Enable Print and Sign",
      description: "Allow signers to print and sign document.",
      optional: true,
    },
    enableReassign: {
      type: "boolean",
      label: "Enable Reassign",
      description: "Allow signers to reassign the document.",
      optional: true,
    },
    enableSigningOrder: {
      type: "boolean",
      label: "Enable Signing Order",
      description: "Enable signing order for the document.",
      optional: true,
    },
    disableExpiryAlert: {
      type: "boolean",
      label: "Disable Expiry Alert",
      description: "Disable alerts before document expiry.",
      optional: true,
    },
    documentInfo: {
      type: "string[]",
      label: "Document Info",
      description: "Custom information fields for the document. [See the documentation](https://developers.boldsign.com/documents/send-document-from-template) for further information.",
      optional: true,
    },
    roleRemovalIndices: {
      type: "integer[]",
      label: "Role Removal Indices",
      description: "Removes the roles present in the template with their indices given in this property.",
      optional: true,
    },
    documentDownloadOption: {
      type: "string",
      label: "Document Download Option",
      description: "Option for document download configuration.",
      options: DOCUMENT_DOWNLOAD_OPTIONS,
      optional: true,
    },
    formGroups: {
      type: "string[]",
      label: "Form Groups",
      description: "Manages the rules and configuration of grouped form fields. [See the documentation](https://developers.boldsign.com/documents/send-document-from-template) for further information.",
      optional: true,
    },
    files: {
      type: "string[]",
      label: "File Paths or URLs",
      description: "The files to upload. For each entry, provide either a file URL or path to a file in the `/tmp` directory (for example, `/tmp/myFile.txt`)",
      optional: true,
    },
    fileUrls: {
      type: "string[]",
      label: "File URLs",
      description: "URLs of files to include in the document.",
      optional: true,
    },
    recipientNotificationSettings: {
      type: "object",
      label: "Recipient Notification Settings",
      description: "Settings for recipient notifications. [See the documentation](https://developers.boldsign.com/documents/send-document-from-template) for further information.",
      optional: true,
    },
    removeFormfields: {
      type: "string[]",
      label: "Remove Formfields",
      description: "The removeFormFields property in API allows you to exclude specific form fields from a document before sending it. You provide a string array with the IDs of the existing form fields you want to remove. One or more values can be specified.",
      optional: true,
    },
    enableAuditTrailLocalization: {
      type: "boolean",
      label: "Enable Audit Trail Localization",
      description: "Enable localization for audit trail based on the signer's language. If null is provided, the value will be inherited from the Business Profile settings. Only one additional language can be specified in the signer's languages besides English.",
      optional: true,
    },
  },
  async additionalProps(props) {
    props.reminderDays.hidden = !this.enableAutoReminder;
    props.reminderCount.hidden = !this.enableAutoReminder;
    return {};
  },
  async run({ $ }) {
    try {
      const files = [];
      if (this.files) {
        for (const file of parseObject(this.files)) {
          const {
            stream, metadata,
          } = await getFileStreamAndMetadata(file);
          const chunks = [];
          for await (const chunk of stream) {
            chunks.push(chunk);
          }
          const buffer = Buffer.concat(chunks);
          files.push(`data:${metadata.contentType};base64,${buffer.toString("base64")}`);
        }
      }

      const additionalData = {};
      if (this.enableAutoReminder) {
        additionalData.reminderSettings = {
          enableAutoReminder: this.enableAutoReminder,
          reminderDays: this.reminderDays,
          reminderCount: this.reminderCount,
        };
      }

      const response = await this.boldsign.sendDocument({
        $,
        headers: {
          "Content-Type": "application/json;odata.metadata=minimal;odata.streaming=true",
        },
        params: {
          templateId: this.templateId,
        },
        data: {
          title: this.title,
          message: this.message,
          roles: parseObject(this.roles),
          brandId: this.brandId,
          labels: parseObject(this.labels),
          disableEmails: this.disableEmails,
          disableSMS: this.disableSMS,
          hideDocumentId: this.hideDocumentId,
          reminderSettings: {
            enableAutoReminder: this.enableAutoReminder,
            reminderDays: this.reminderDays,
            reminderCount: this.reminderCount,
          },
          cc: parseObject(this.cc)?.map((item) => ({
            emailAddress: item,
          })),
          expiryDays: this.expiryDays,
          enablePrintAndSign: this.enablePrintAndSign,
          enableReassign: this.enableReassign,
          enableSigningOrder: this.enableSigningOrder,
          disableExpiryAlert: this.disableExpiryAlert,
          documentInfo: parseObject(this.documentInfo),
          roleRemovalIndices: parseObject(this.roleRemovalIndices),
          documentDownloadOption: this.documentDownloadOption,
          formGroups: parseObject(this.formGroups),
          files,
          fileUrls: parseObject(this.fileUrls),
          recipientNotificationSettings: parseObject(this.recipientNotificationSettings),
          removeFormfields: parseObject(this.removeFormfields),
          enableAuditTrailLocalization: this.enableAuditTrailLocalization,
          ...additionalData,
        },
      });
      $.export("$summary", `Document sent successfully using template ${this.templateId}`);
      return response;
    } catch ({ message }) {
      const parsedMessage = JSON.parse(message);
      let errorMessage = "";
      if (parsedMessage.error) errorMessage = parsedMessage.error;
      if (parsedMessage.errors) {
        Object.entries(parsedMessage.errors).map(([
          ,
          value,
        ]) => {
          errorMessage += `- ${value[0]}\n`;
        });
      }
      throw new ConfigurationError(errorMessage);
    }
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
BoldSignboldsignappThis component uses the BoldSign app.
Template IDtemplateIdstringSelect a value from the drop down menu.
Titletitlestring

The title of the document.

Messagemessagestring

A message to include with the document.

Rolesrolesstring[]

A role is simply a placeholder for a real person. For example, if we have a purchase order that will always be signed by two people, one from the company and one from the customer, we can create a template with two roles Customer and Representative. Example: [{"roleIndex": 50,"signerName": "Richard","signerOrder": 1,"signerEmail": "richard@cubeflakes.com","privateMessage": "Please check and sign the document.","authenticationCode": "281028","enableEmailOTP": false,"signerType": "Signer","signerRole": "Manager","formFields": [{"id": "SignField","fieldType": "Signature","pageNumber": 1,"bounds": {"x": 100,"y": 100,"width": 100,"height": 50},"isRequired": true}].

Brand IDbrandIdstringSelect a value from the drop down menu.
Labelslabelsstring[]

Labels for categorizing documents.

Disable EmailsdisableEmailsboolean

Disable sending emails to recipients.

Disable SMSdisableSMSboolean

Disable sending SMS to recipients.

Hide Document IDhideDocumentIdboolean

Decides whether the document ID should be hidden or not.

Enable Auto ReminderenableAutoReminderboolean

Enable automatic reminders.

CCccstring[]Select a value from the drop down menu.
Expiry DaysexpiryDaysinteger

Number of days before document expires.

Enable Print and SignenablePrintAndSignboolean

Allow signers to print and sign document.

Enable ReassignenableReassignboolean

Allow signers to reassign the document.

Enable Signing OrderenableSigningOrderboolean

Enable signing order for the document.

Disable Expiry AlertdisableExpiryAlertboolean

Disable alerts before document expiry.

Document InfodocumentInfostring[]

Custom information fields for the document. See the documentation for further information.

Role Removal IndicesroleRemovalIndicesinteger[]

Removes the roles present in the template with their indices given in this property.

Document Download OptiondocumentDownloadOptionstringSelect a value from the drop down menu:CombinedIndividually
Form GroupsformGroupsstring[]

Manages the rules and configuration of grouped form fields. See the documentation for further information.

File Paths or URLsfilesstring[]

The files to upload. For each entry, provide either a file URL or path to a file in the /tmp directory (for example, /tmp/myFile.txt)

File URLsfileUrlsstring[]

URLs of files to include in the document.

Recipient Notification SettingsrecipientNotificationSettingsobject

Settings for recipient notifications. See the documentation for further information.

Remove FormfieldsremoveFormfieldsstring[]

The removeFormFields property in API allows you to exclude specific form fields from a document before sending it. You provide a string array with the IDs of the existing form fields you want to remove. One or more values can be specified.

Enable Audit Trail LocalizationenableAuditTrailLocalizationboolean

Enable localization for audit trail based on the signer's language. If null is provided, the value will be inherited from the Business Profile settings. Only one additional language can be specified in the signer's languages besides English.

Action Authentication

BoldSign uses OAuth authentication. When you connect your BoldSign account, Pipedream will open a popup window where you can sign into BoldSign and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any BoldSign API.

Pipedream requests the following authorization scopes when you connect your account:

offline_accessBoldSign.Users.ReadBoldSign.Documents.WriteBoldSign.Documents.CreateBoldSign.Templates.ReadBoldSign.Templates.WriteBoldSign.Templates.CreateBoldSign.SenderIdentity.ReadBoldSign.Documents.ReadBoldSign.Contacts.Read

About BoldSign

Electronic Signature Software & API

More Ways to Connect BoldSign + Zoho Forms

Get Form Fields with Zoho Forms API on New Document Sent from BoldSign API
BoldSign + Zoho Forms
 
Try it
List Forms with Zoho Forms API on New Document Sent from BoldSign API
BoldSign + Zoho Forms
 
Try it
Get Form Fields with Zoho Forms API on New Document Completed from BoldSign API
BoldSign + Zoho Forms
 
Try it
List Forms with Zoho Forms API on New Document Completed from BoldSign API
BoldSign + Zoho Forms
 
Try it
Get Form Fields with Zoho Forms API on New Document Declined from BoldSign API
BoldSign + Zoho Forms
 
Try it
New Response Received (Instant) from the Zoho Forms API

Emit new event when a specific form receive a new response.

 
Try it
New Document Completed from the BoldSign API

Emit new event when a document is completed by all the signers.

 
Try it
New Document Declined from the BoldSign API

Emit new event when a document is declined by a signer.

 
Try it
New Document Sent from the BoldSign API

Emit new event when a document is sent to a signer.

 
Try it
Get Form Fields with the Zoho Forms API

Get the fields of a particular form

 
Try it
List Forms with the Zoho Forms API

Fetches the meta information of all the forms present in a Zoho Creator application. See the documentation

 
Try it
Send Document Using Template with the BoldSign API

Send documents for e-signature using a BoldSign template. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
2,700+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Anthropic (Claude)
Anthropic (Claude)
AI research and products that put safety at the frontier. Introducing Claude, a next-generation AI assistant for your tasks, no matter the scale.
Google Sheets
Google Sheets
Use Google Sheets to create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device.
Telegram
Telegram
Telegram, is a cloud-based, cross-platform, encrypted instant messaging (IM) service.
Google Drive
Google Drive
Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.
Pinterest
Pinterest
Pinterest is a visual discovery engine for finding ideas like recipes, home and style inspiration, and more.
Google Calendar
Google Calendar
With Google Calendar, you can quickly schedule meetings and events and get reminders about upcoming activities, so you always know what’s next.
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.