← Trustpilot (Customer) + BoldSign integrations

Send Document Using Template with BoldSign API on New Product Reviews from Trustpilot (Customer) API

Pipedream makes it easy to connect APIs for BoldSign, Trustpilot (Customer) and 3,000+ other apps remarkably fast.

Trigger workflow on
New Product Reviews from the Trustpilot (Customer) 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 Trustpilot (Customer) 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 Product Reviews trigger
    1. Connect your Trustpilot (Customer) account
    2. Configure timer
    3. Select a Business Unit ID
  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
    29. Optional- Configure syncDir
  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 customer posts a new product review on Trustpilot. This source periodically polls the Trustpilot API to detect new product reviews. Each event contains the complete review data including star rating, review text, product information, consumer details, and timestamps. Perfect for monitoring product feedback, analyzing customer satisfaction trends, and triggering automated responses or alerts for specific products.
Version:0.1.0
Key:trustpilot-new-product-reviews

Trustpilot (Customer) Overview

The Trustpilot (Customer) API lets you tap into the rich pool of customer review data on Trustpilot. You can use it to automate the process of collecting and managing reviews, responding to feedback, and analyzing customer sentiment. With Pipedream's integration, you can trigger workflows based on new reviews, aggregate review data for analysis, and sync Trustpilot data with other services like CRMs, support tickets, and marketing tools.

Trigger Code

import common from "../common/polling.mjs";
import {
  DEFAULT_LIMIT,
  MAX_LIMIT,
} from "../../common/constants.mjs";

export default {
  ...common,
  key: "trustpilot-new-product-reviews",
  name: "New Product Reviews",
  description: "Emit new event when a customer posts a new product review on Trustpilot. This source periodically polls the Trustpilot API to detect new product reviews. Each event contains the complete review data including star rating, review text, product information, consumer details, and timestamps. Perfect for monitoring product feedback, analyzing customer satisfaction trends, and triggering automated responses or alerts for specific products.",
  version: "0.1.0",
  type: "source",
  dedupe: "unique",
  methods: {
    ...common.methods,
    generateSummary(review) {
      const stars = review.stars || "N/A";
      const consumerName = review.consumer?.name || "Anonymous";
      const productName = review.product?.name || "Unknown Product";
      const businessUnit = this.businessUnitId || "Unknown";

      return `New ${stars}-star product review by ${consumerName} for "${productName}" (${businessUnit})`;
    },
    getFetchParams() {
      // Note: Product reviews API doesn't support time-based filtering,
      // so we'll rely on pagination and client-side filtering
      return {
        businessUnitId: this.businessUnitId,
        perPage: DEFAULT_LIMIT,
        page: 1,
      };
    },
    async fetchReviews($, params) {
      const perPage = params.perPage ?? DEFAULT_LIMIT;
      let page = params.page ?? 1;

      // fetch first page
      let result = await this.trustpilot.fetchProductReviews($, {
        ...params,
        page,
      });
      let all = Array.isArray(result.reviews)
        ? result.reviews
        : [];
      let lastPageSize = all.length;

      // keep paging while we get a full page and stay under MAX_LIMIT
      while (lastPageSize === perPage && all.length < MAX_LIMIT) {
        page += 1;
        const next = await this.trustpilot.fetchProductReviews($, {
          ...params,
          page,
        });
        const chunk = Array.isArray(next.reviews) ?
          next.reviews :
          [];
        if (chunk.length === 0) break;

        all = all.concat(chunk);
        lastPageSize = chunk.length;
        result = next; // preserve any metadata from the latest fetch
      }

      // truncate to MAX_LIMIT in case there are more than allowed
      result.reviews = all.slice(0, MAX_LIMIT);
      return result;
    },
    filterNewReviews(reviews, lastReviewTime) {
      // Product reviews require client-side filtering since API doesn't support
      // time-based filtering
      const lastTs = Number(lastReviewTime) || 0;
      const toMs = (d) => new Date(d).getTime();

      return lastTs
        ? reviews.filter((r) => toMs(r.createdAt) > lastTs)
        : reviews;
    },
    _getLastReviewTime() {
      // Product reviews store timestamp as number (ms), others store as ISO string
      return this.db.get("lastReviewTime");
    },
    _setLastReviewTime(time) {
      // Store as number for product reviews to match existing behavior
      const timeMs = typeof time === "string"
        ? new Date(time).getTime()
        : time;
      this.db.set("lastReviewTime", timeMs);
    },
  },
};

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
Trustpilot (Customer)trustpilotappThis component uses the Trustpilot (Customer) app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
timer$.interface.timer
Business Unit IDbusinessUnitIdstringSelect a value from the drop down menu.

Trigger Authentication

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

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

About Trustpilot (Customer)

Read reviews. Write reviews. Find companies you can trust.

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.2
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.2",
  annotations: {
    destructiveHint: false,
    openWorldHint: true,
    readOnlyHint: false,
  },
  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,
    },
    syncDir: {
      type: "dir",
      accessMode: "read",
      sync: true,
      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.

syncDirsyncDirdir

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 + Trustpilot (Customer)

Send Document Using Template with BoldSign API on New Service Review Replies from Trustpilot (Customer) API
Trustpilot (Customer) + BoldSign
 
Try it
Send Document Using Template with BoldSign API on New Updated Conversations from Trustpilot (Customer) API
Trustpilot (Customer) + BoldSign
 
Try it
Send Document Using Template with BoldSign API on New Service Reviews from Trustpilot (Customer) API
Trustpilot (Customer) + BoldSign
 
Try it
Send Document Using Template with BoldSign API on New Conversations from Trustpilot (Customer) API
Trustpilot (Customer) + BoldSign
 
Try it
Send Document Using Template with BoldSign API on New Product Review Replies from Trustpilot (Customer) API
Trustpilot (Customer) + BoldSign
 
Try it
New Conversations from the Trustpilot (Customer) API

Emit new event when a new conversation is started on Trustpilot. This source periodically polls the Trustpilot API to detect new customer-business conversations. Each event contains conversation details including participants, subject, business unit, and creation timestamp. Useful for tracking customer inquiries, support requests, and maintaining real-time communication with customers.

 
Try it
New Product Review Replies from the Trustpilot (Customer) API

Emit new event when a business replies to a product review on Trustpilot. This source periodically polls the Trustpilot API to detect new replies to product reviews. Each event includes the reply text, creation timestamp, and associated review details (product name, star rating, consumer info). Ideal for monitoring business responses to customer feedback, tracking customer service performance, and ensuring timely engagement with product reviews.

 
Try it
New Product Reviews from the Trustpilot (Customer) API

Emit new event when a customer posts a new product review on Trustpilot. This source periodically polls the Trustpilot API to detect new product reviews. Each event contains the complete review data including star rating, review text, product information, consumer details, and timestamps. Perfect for monitoring product feedback, analyzing customer satisfaction trends, and triggering automated responses or alerts for specific products.

 
Try it
New Service Review Replies from the Trustpilot (Customer) API

Emit new event when a business replies to a service review on Trustpilot. This source periodically polls the Trustpilot API to detect new replies to service reviews. Each event includes the reply text, creation timestamp, and associated review details (star rating, review title, consumer info). Essential for tracking business engagement with customer feedback, monitoring response times, and ensuring all service reviews receive appropriate attention.

 
Try it
New Service Reviews from the Trustpilot (Customer) API

Emit new event when a customer posts a new service review on Trustpilot. This source periodically polls the Trustpilot API to detect new service reviews using the private reviews API for comprehensive coverage.

 
Try it
Fetch Product Review by ID with the Trustpilot (Customer) API

Retrieves detailed information about a specific product review on Trustpilot. Use this action to get comprehensive data about a single product review, including customer feedback, star rating, review text, and metadata. Perfect for analyzing individual customer experiences, responding to specific feedback, or integrating review data into your customer service workflows. See the documentation

 
Try it
Fetch Product Reviews with the Trustpilot (Customer) API

Retrieves a list of product reviews for a specific business unit. See documentation here

 
Try it
Fetch Service Review by ID with the Trustpilot (Customer) API

Get a private service review by ID, including customer email and order ID. Access comprehensive data about an individual service review for your business. See the documentation

 
Try it
Fetch Service Reviews with the Trustpilot (Customer) API

Get private reviews for a business unit. Response includes customer email and order ID. See the documentation

 
Try it
Get Conversation from Product Review with the Trustpilot (Customer) API

Get conversation and related comments from a product review. First fetches the review to get the conversationId, then retrieves the full conversation details. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
3,000+
apps by most popular

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.
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.
HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
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.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
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.
AWS
AWS
Premium
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Twilio SendGrid
Twilio SendGrid
Premium
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
Klaviyo
Klaviyo
Premium
Klaviyo unifies your data, channels, and AI agents in one platform—text, WhatsApp, email marketing, and more—driving growth with every interaction.
Zendesk
Zendesk
Premium
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
ServiceNow
ServiceNow
Premium
Beta
The smarter way to workflow
Slack
Slack
Slack is the AI-powered platform for work bringing all of your conversations, apps, and customers together in one place. Around the world, Slack is helping businesses of all sizes grow and send productivity through the roof.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.