← Formcarry + Zoho Books integrations

Create Customer with Zoho Books API on New Form Submission from Formcarry API

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

Trigger workflow on
New Form Submission from the Formcarry API
Next, do this
Create Customer with the Zoho Books 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 Formcarry trigger and Zoho Books 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 Form Submission trigger
    1. Connect your Formcarry account
    2. Configure timer
    3. Configure Form ID
  3. Configure the Create Customer action
    1. Connect your Zoho Books account
    2. Configure Contact Name
    3. Optional- Configure Company Name
    4. Optional- Configure Website
    5. Optional- Select a Language Code
    6. Optional- Select a Customer Sub Type
    7. Optional- Configure Credit Limit
    8. Optional- Configure Tags
    9. Optional- Configure Is Portal Enabled
    10. Optional- Select a Currency Id
    11. Optional- Configure Payment Terms
    12. Optional- Configure Payment Terms Label
    13. Optional- Configure Notes
    14. Optional- Configure Exchange Rate
    15. Optional- Configure VAT Treatment
    16. Optional- Configure GST No
    17. Optional- Configure Avatax Use Code
    18. Optional- Select a Tax Id
  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 the specified form receives a new submission. [See the documentation](https://formcarry.com/docs/formcarry-api/submissions-api#cc7f3010897b4c938c8829db46b18656)
Version:0.0.1
Key:formcarry-new-form-submission

Formcarry Overview

Formcarry is an API for form processing, empowering developers to handle form submissions without the need for server-side code. With Formcarry, you can effortlessly collect, process, and integrate form data with various services. Using Pipedream, you can create serverless workflows that react to form submissions by triggering actions within Formcarry or in other apps, streamlining data collection and automation processes.

Trigger Code

import formcarry from "../../formcarry.app.mjs";
import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";

export default {
  key: "formcarry-new-form-submission",
  name: "New Form Submission",
  description: "Emit new event when the specified form receives a new submission. [See the documentation](https://formcarry.com/docs/formcarry-api/submissions-api#cc7f3010897b4c938c8829db46b18656)",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  props: {
    formcarry,
    db: "$.service.db",
    timer: {
      type: "$.interface.timer",
      default: {
        intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
      },
    },
    formId: {
      type: "string",
      label: "Form ID",
      description: "The ID of the form to watch for new submissions",
    },
  },
  hooks: {
    async deploy() {
      await this.processEvent(25);
    },
  },
  methods: {
    _getLastTs() {
      return this.db.get("lastTs") || 0;
    },
    _setLastTs(lastTs) {
      this.db.set("lastTs", lastTs);
    },
    generateMeta(submission) {
      return {
        id: submission._id,
        summary: `New Form Submission ID: ${submission._id}`,
        ts: Date.parse(submission.createdAt),
      };
    },
    async processEvent(max) {
      const lastTs = this._getLastTs();

      const results = this.formcarry.paginate({
        fn: this.formcarry.listSubmissions,
        args: {
          formId: this.formId,
        },
        resourceKey: "submissions",
        max,
      });

      const submissions = [];
      for await (const item of results) {
        const ts = Date.parse(item.createdAt);
        if (ts >= lastTs) {
          submissions.push(item);
        } else {
          break;
        }
      }

      if (!submissions.length) {
        return;
      }

      this._setLastTs(Date.parse(submissions[0].createdAt));

      submissions.forEach((submission) => {
        const meta = this.generateMeta(submission);
        this.$emit(submission, meta);
      });
    },
  },
  async run() {
    await this.processEvent();
  },
};

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
FormcarryformcarryappThis component uses the Formcarry app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
timer$.interface.timer
Form IDformIdstring

The ID of the form to watch for new submissions

Trigger Authentication

Formcarry uses API keys for authentication. When you connect your Formcarry account, Pipedream securely stores the keys so you can easily authenticate to Formcarry APIs in both code and no-code steps.

About Formcarry

Formcarry allows you to collect submissions from your own HTML form, without any back-end code.

Action

Description:Creates a new customer. [See the documentation](https://www.zoho.com/books/api/v3/items/#create-an-item)
Version:0.0.1
Key:zoho_books-create-customer

Zoho Books Overview

Zoho Books API unlocks the potential to automate and streamline accounting tasks by integrating with Pipedream's serverless platform. With this powerful combo, you can automate invoicing, manage your accounts, reconcile bank transactions, and handle contacts and items without manual input. By setting up event-driven workflows, you can ensure data consistency across platforms, trigger notifications, and generate reports, all while saving time and reducing human error.

Action Code

// legacy_hash_id: a_Xzi1qo
import {
  CUSTOMER_SUB_TYPE_OPTIONS,
  LANGUAGE_CODE_OPTIONS,
} from "../../common/constants.mjs";
import {
  clearObj,
  parseObject,
} from "../../common/utils.mjs";
import zohoBooks from "../../zoho_books.app.mjs";

export default {
  key: "zoho_books-create-customer",
  name: "Create Customer",
  description: "Creates a new customer. [See the documentation](https://www.zoho.com/books/api/v3/items/#create-an-item)",
  version: "0.0.1",
  type: "action",
  props: {
    zohoBooks,
    contactName: {
      type: "string",
      label: "Contact Name",
      description: "Display Name of the contact. Max-length [200].",
    },
    companyName: {
      type: "string",
      label: "Company Name",
      description: "Company Name of the contact. Max-length [200].",
      optional: true,
    },
    website: {
      type: "string",
      label: "Website",
      description: "Website of the contact.",
      optional: true,
    },
    languageCode: {
      type: "string",
      label: "Language Code",
      description: "The language of a contact.",
      options: LANGUAGE_CODE_OPTIONS,
      optional: true,
    },
    customerSubType: {
      type: "string",
      label: "Customer Sub Type",
      description: "Type of the customer.",
      options: CUSTOMER_SUB_TYPE_OPTIONS,
      optional: true,
    },
    creditLimit: {
      type: "string",
      label: "Credit Limit",
      description: "Credit limit for a customer.",
      optional: true,
    },
    tags: {
      type: "string[]",
      label: "Tags",
      description: "An array of tag objects. **Example: {\"tag_id\":\"124567890\",\"tag_option_id\":\"1234567890\"}**",
      optional: true,
    },
    isPortalEnabled: {
      type: "boolean",
      label: "Is Portal Enabled",
      description: "To enable client portal for the contact.",
      optional: true,
    },
    currencyId: {
      propDefinition: [
        zohoBooks,
        "currencyId",
      ],
      optional: true,
    },
    paymentTerms: {
      propDefinition: [
        zohoBooks,
        "paymentTerms",
      ],
      description: "Net payment term for the customer.",
      optional: true,
    },
    paymentTermsLabel: {
      propDefinition: [
        zohoBooks,
        "paymentTermsLabel",
      ],
      description: "Label for the paymet due details.",
      optional: true,
    },
    notes: {
      propDefinition: [
        zohoBooks,
        "notes",
      ],
      description: "Commennts about the payment made by the contact.",
      optional: true,
    },
    exchangeRate: {
      propDefinition: [
        zohoBooks,
        "exchangeRate",
      ],
      description: "Exchange rate for the opening balance.",
      optional: true,
    },
    vatTreatment: {
      propDefinition: [
        zohoBooks,
        "vatTreatment",
      ],
      optional: true,
    },
    gstNo: {
      propDefinition: [
        zohoBooks,
        "gstNo",
      ],
      optional: true,
    },
    avataxUseCode: {
      propDefinition: [
        zohoBooks,
        "avataxUseCode",
      ],
      optional: true,
    },
    taxId: {
      propDefinition: [
        zohoBooks,
        "taxId",
      ],
      description: "ID of the tax to be associated to the estimate.",
      optional: true,
    },
  },
  async run({ $ }) {
    const response = await this.zohoBooks.createContact({
      $,
      data: clearObj({
        contact_name: this.contactName,
        company_name: this.companyName,
        website: this.website,
        language_code: this.languageCode,
        contact_type: "customer",
        customer_sub_type: this.customerSubType,
        credit_limit: this.creditLimit,
        tags: parseObject(this.tags),
        is_portal_enabled: this.isPortalEnabled,
        currency_id: this.currencyId,
        payment_terms: this.paymentTerms,
        payment_terms_label: this.paymentTermsLabel,
        notes: this.notes,
        exchange_rate: this.exchangeRate && parseFloat(this.exchangeRate),
        vat_treatment: this.vatTreatment,
        gst_no: this.gstNo,
        avatax_use_code: this.avataxUseCode,
        tax_id: this.taxId,
      }),
    });

    $.export("$summary", `Contact successfully created with Id: ${response.contact.contact_id}`);
    return response;
  },
};

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
Zoho BookszohoBooksappThis component uses the Zoho Books app.
Contact NamecontactNamestring

Display Name of the contact. Max-length [200].

Company NamecompanyNamestring

Company Name of the contact. Max-length [200].

Websitewebsitestring

Website of the contact.

Language CodelanguageCodestringSelect a value from the drop down menu:deenesfritjanlptpt_brsvzhen_gb
Customer Sub TypecustomerSubTypestringSelect a value from the drop down menu:businessindividual
Credit LimitcreditLimitstring

Credit limit for a customer.

Tagstagsstring[]

An array of tag objects. Example: {"tag_id":"124567890","tag_option_id":"1234567890"}

Is Portal EnabledisPortalEnabledboolean

To enable client portal for the contact.

Currency IdcurrencyIdstringSelect a value from the drop down menu.
Payment TermspaymentTermsinteger

Net payment term for the customer.

Payment Terms LabelpaymentTermsLabelstring

Label for the paymet due details.

Notesnotesstring

Commennts about the payment made by the contact.

Exchange RateexchangeRatestring

Exchange rate for the opening balance.

VAT TreatmentvatTreatmentstring

Enter vat treatment.

GST NogstNostring

15 digit GST identification number of the customer.

Avatax Use CodeavataxUseCodestring

Used to group like customers for exemption purposes. It is a custom value that links customers to a tax rule.

Tax IdtaxIdstringSelect a value from the drop down menu.

Action Authentication

Zoho Books uses OAuth authentication. When you connect your Zoho Books account, Pipedream will open a popup window where you can sign into Zoho Books 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 Books API.

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

ZohoBooks.fullaccess.all

About Zoho Books

Online accounting software

More Ways to Connect Zoho Books + Formcarry

Create Customer Payment with Zoho Books API on New Form Submission from Formcarry API
Formcarry + Zoho Books
 
Try it
Create Employee with Zoho Books API on New Form Submission from Formcarry API
Formcarry + Zoho Books
 
Try it
Create Invoice with Zoho Books API on New Form Submission from Formcarry API
Formcarry + Zoho Books
 
Try it
Create Item with Zoho Books API on New Form Submission from Formcarry API
Formcarry + Zoho Books
 
Try it
Create Sales Order with Zoho Books API on New Form Submission from Formcarry API
Formcarry + Zoho Books
 
Try it
New Form Submission from the Formcarry API

Emit new event when the specified form receives a new submission. See the documentation

 
Try it
New Customer from the Zoho Books API

Emit new event when a new customer is created.

 
Try it
New Expense from the Zoho Books API

Emit new event when a new expense is created.

 
Try it
New or Updated Invoice from the Zoho Books API

Emit new event when a new invoice is created or an existing invoice is updated.

 
Try it
New Sales Order from the Zoho Books API

Emit new event when a new sales order is created.

 
Try it
Create Customer with the Zoho Books API

Creates a new customer. See the documentation

 
Try it
Create Customer Payment with the Zoho Books API

Creates a new payment. See the documentation

 
Try it
Create Employee with the Zoho Books API

Creates an employee for an expense. See the documentation

 
Try it
Create Estimate with the Zoho Books API

Creates a new estimate. See the documentation

 
Try it
Create Invoice with the Zoho Books API

Creates an invoice for your customer. 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.