← Zoho CRM + Tremendous integrations

Create Order Email Reward with Tremendous API on New or Updated Contact (Instant) from Zoho CRM API

Pipedream makes it easy to connect APIs for Tremendous, Zoho CRM and 2,500+ other apps remarkably fast.

Trigger workflow on
New or Updated Contact (Instant) from the Zoho CRM API
Next, do this
Create Order Email Reward with the Tremendous 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 CRM trigger and Tremendous 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 or Updated Contact (Instant) trigger
    1. Connect your Zoho CRM account
    2. Configure Subscription Renewal Timer
  3. Configure the Create Order Email Reward action
    1. Connect your Tremendous account
    2. Optional- Select a Campaign ID
    3. Optional- Select one or more Products
    4. Configure infoBox
    5. Select a Funding Source ID
    6. Optional- Configure External ID
    7. Configure Value Amount
    8. Configure Value Currency Code
    9. Configure Recipient Name
    10. Configure Recipient Email
    11. Configure Recipient Phone
    12. Select a Delivery Method
  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:Emits an event each time a new contact is created or updated in Zoho CRM
Version:0.0.10
Key:zoho_crm-new-or-updated-contact

Zoho CRM Overview

The Zoho CRM API enables the manipulation and retrieval of data within Zoho CRM, a platform for managing your sales, marketing, support, and inventory in a single system. Leveraging this on Pipedream, you can automate tasks like syncing contacts, updating lead statuses, or creating custom CRM operations that trigger actions in other apps. Pipedream's serverless platform allows for real-time data processing, transforming, and orchestrating workflows that respond to events in Zoho CRM with minimal latency.

Trigger Code

import common from "../common/http-based/common-predefined-module.mjs";
import crudOps from "../common/http-based/common-crud-operations.mjs";

export default {
  ...common,
  key: "zoho_crm-new-or-updated-contact",
  name: "New or Updated Contact (Instant)",
  description: "Emits an event each time a new contact is created or updated in Zoho CRM",
  version: "0.0.10",
  type: "source",
  methods: {
    ...common.methods,
    getModuleName() {
      return "Contact";
    },
    getSupportedOps() {
      return [
        crudOps.createOpData(),
        crudOps.editOpData(),
      ];
    },
  },
};

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 CRMzohoCrmappThis component uses the Zoho CRM 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.
Subscription Renewal Timertimer$.interface.timer

Zoho CRM webhooks subscriptions have an expiration date of up to 1 day. This event source renews the subscription every 12 hours by default.

Trigger Authentication

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

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

ZohoCRM.settings.allZohoCRM.users.allZohoCRM.org.allZohoCRM.modules.allZohoCRM.bulk.allZohoCRM.notifications.readZohoCRM.notifications.createZohoCRM.notifications.updateZohoCRM.notifications.deleteZohoCRM.coql.READZohoCRM.functions.execute.READZohoCRM.functions.execute.CREATEZohoCRM.templates.email.READZohoCRM.templates.inventory.READ

About Zoho CRM

Zoho CRM is an online Sales CRM software that manages your sales, marketing, and support in one CRM platform.

Action

Description:Create an order to send out a reward. [See the documentation](https://developers.tremendous.com/reference/create-order)
Version:0.0.1
Key:tremendous-create-order-email-reward

Tremendous Overview

The Tremendous API lets you automate the distribution of digital rewards and incentives, such as gift cards, prepaid Visa® cards, cash, and more. It's perfect for businesses wanting to scale their reward programs without manual intervention. With Pipedream, you can harness the Tremendous API to create dynamic, serverless workflows that trigger rewards based on various events, integrate with CRM systems for customer milestones, or streamline employee recognition processes.

Action Code

import app from "../../tremendous.app.mjs";
import { DELIVERY_METHOD_OPTIONS } from "../../common/constants.mjs";

export default {
  name: "Create Order Email Reward",
  version: "0.0.1",
  key: "tremendous-create-order-email-reward",
  description: "Create an order to send out a reward. [See the documentation](https://developers.tremendous.com/reference/create-order)",
  type: "action",
  props: {
    app,
    campaignId: {
      propDefinition: [
        app,
        "campaignId",
      ],
      optional: true,
    },
    products: {
      propDefinition: [
        app,
        "products",
      ],
      optional: true,
    },
    infoBox: {
      type: "alert",
      alertType: "info",
      content: "Either `Products` or `Campaign ID` must be specified. [See the documentation](https://developers.tremendous.com/reference/create-order) for more information.",
    },
    fundingSourceId: {
      propDefinition: [
        app,
        "fundingSourceId",
      ],
      default: "balance",
    },
    externalId: {
      type: "string",
      label: "External ID",
      description: "Reference for this order. If set, any subsequent requests with the same `External ID` will not create any further orders, and simply return the initially created order.",
      optional: true,
    },
    valueAmount: {
      type: "string",
      label: "Value Amount",
      description: "Amount of the reward.",
    },
    valueCurrencyCode: {
      type: "string",
      label: "Value Currency Code",
      description: "Currency of the reward.",
    },
    recipientName: {
      type: "string",
      label: "Recipient Name",
      description: "Name of the recipient.",
    },
    recipientEmail: {
      type: "string",
      label: "Recipient Email",
      description: "Email address of the recipient.",
    },
    recipientPhone: {
      type: "string",
      label: "Recipient Phone",
      description: "Phone number of the recipient. For non-US phone numbers, specify the country code (prefixed with `+`).",
    },
    deliveryMethod: {
      type: "string",
      label: "Delivery Method",
      description: "How to deliver the reward to the recipient.",
      options: DELIVERY_METHOD_OPTIONS,
    },
  },
  async run({ $ }) {
    const response = await this.app.createOrder({
      $,
      data: {
        external_id: this.externalId,
        payment: {
          funding_source_id: this.fundingSourceId,
        },
        reward: {
          campaign_id: this.campaignId,
          products: this.products,
          value: {
            denomination: this.valueAmount,
            currency_code: this.valueCurrencyCode,
          },
          recipient: {
            name: this.recipientName,
            email: this.recipientEmail,
            phone: this.recipientPhone,
          },
          delivery: {
            method: this.deliveryMethod,
          },
        },
      },
    });

    $.export("$summary", `Successfully created order (ID: ${response?.order?.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
TremendousappappThis component uses the Tremendous app.
Campaign IDcampaignIdstringSelect a value from the drop down menu.
Productsproductsstring[]Select a value from the drop down menu.
Funding Source IDfundingSourceIdstringSelect a value from the drop down menu.
External IDexternalIdstring

Reference for this order. If set, any subsequent requests with the same External ID will not create any further orders, and simply return the initially created order.

Value AmountvalueAmountstring

Amount of the reward.

Value Currency CodevalueCurrencyCodestring

Currency of the reward.

Recipient NamerecipientNamestring

Name of the recipient.

Recipient EmailrecipientEmailstring

Email address of the recipient.

Recipient PhonerecipientPhonestring

Phone number of the recipient. For non-US phone numbers, specify the country code (prefixed with +).

Delivery MethoddeliveryMethodstringSelect a value from the drop down menu:{ "value": "EMAIL", "label": "Deliver the reward to the recipient by email" }{ "value": "LINK", "label": "Deliver the reward to the recipient via a link." }{ "value": "PHONE", "label": "Deliver the reward to the recipient by SMS" }

Action Authentication

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

About Tremendous

Buy, track, and manage incentives at scale with ease.

More Ways to Connect Tremendous + Zoho CRM

Create Order Email Reward with Tremendous API on New Contact (Instant) from Zoho CRM API
Zoho CRM + Tremendous
 
Try it
Create Order Email Reward with Tremendous API on New Event (Instant) from Zoho CRM API
Zoho CRM + Tremendous
 
Try it
Create Order Email Reward with Tremendous API on New Lead (Instant) from Zoho CRM API
Zoho CRM + Tremendous
 
Try it
Create Order Email Reward with Tremendous API on New or Updated Lead (Instant) from Zoho CRM API
Zoho CRM + Tremendous
 
Try it
Create Order Email Reward with Tremendous API on New User from Zoho CRM API
Zoho CRM + Tremendous
 
Try it
New Contact (Instant) from the Zoho CRM API

Emits an event each time a new contact is created in Zoho CRM

 
Try it
New Event (Instant) from the Zoho CRM API

Emit new custom events from Zoho CRM

 
Try it
New Lead (Instant) from the Zoho CRM API

Emits an event each time a new lead is created in Zoho CRM

 
Try it
New Module Entry (Instant) from the Zoho CRM API

Emit new events each time a new module/record is created in Zoho CRM

 
Try it
New or Updated Contact (Instant) from the Zoho CRM API

Emits an event each time a new contact is created or updated in Zoho CRM

 
Try it
Convert Lead with the Zoho CRM API

Converts a Lead into a Contact or an Account. See the documentation

 
Try it
Create Object with the Zoho CRM API

Create a new object/module entry. See the documentation

 
Try it
Download Attachment with the Zoho CRM API

Downloads an attachment file from Zoho CRM, saves it in the temporary file system and exports the file path for use in a future step.

 
Try it
Get Object with the Zoho CRM API

Gets record data given its id.

 
Try it
List Fields with the Zoho CRM API

Gets the field metadata for the specified module

 
Try it

Explore Other Apps

1
-
0
of
2,500+
apps by most popular