← Cronfree + Salesloft integrations

Create Person with Salesloft API on New Message Received (Instant) from Cronfree API

Pipedream makes it easy to connect APIs for Salesloft, Cronfree and 2,700+ other apps remarkably fast.

Trigger workflow on
New Message Received (Instant) from the Cronfree API
Next, do this
Create Person with the Salesloft 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 Cronfree trigger and Salesloft 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 Message Received (Instant) trigger
    1. Connect your Cronfree account
    2. Select one or more Weekdays
    3. Select one or more Months
    4. Select one or more Days
    5. Select one or more Hours
    6. Select one or more Minutes
    7. Select a Timezone
  3. Configure the Create Person action
    1. Connect your Salesloft account
    2. Configure info
    3. Optional- Configure Email
    4. Optional- Configure First Name
    5. Optional- Configure Last Name
    6. Optional- Configure Phone
    7. Optional- Configure Title
    8. Optional- Configure Company
  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 new message is received. [See the documentation](https://docs.cronfree.com/)
Version:0.0.1
Key:cronfree-new-message-received-instant

Cronfree Overview

The Cronfree API allows you to schedule tasks to run at specific intervals, similar to a traditional cron job, but with the flexibility of web-based management. On Pipedream, you can harness this API to trigger workflows on a schedule, offload periodic tasks from your apps, and integrate with other services to perform actions like sending emails, updating databases, or even automating social media posts.

Trigger Code

import app from "../../cronfree.app.mjs";

export default {
  key: "cronfree-new-message-received-instant",
  name: "New Message Received (Instant)",
  description: "Emit new event when a new message is received. [See the documentation](https://docs.cronfree.com/)",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  props: {
    app,
    http: "$.interface.http",
    wdays: {
      propDefinition: [
        app,
        "wdays",
      ],
    },
    months: {
      propDefinition: [
        app,
        "months",
      ],
    },
    mdays: {
      propDefinition: [
        app,
        "mdays",
      ],
    },
    hours: {
      propDefinition: [
        app,
        "hours",
      ],
    },
    minutes: {
      propDefinition: [
        app,
        "minutes",
      ],
    },
    timezone: {
      propDefinition: [
        app,
        "timezone",
      ],
    },
  },
  hooks: {
    async activate() {
      const {
        http,
        subscribe,
        wdays,
        months,
        mdays,
        hours,
        minutes,
        timezone,
      } = this;

      await subscribe({
        data: {
          hookUrl: http.endpoint,
          wdays,
          months,
          mdays,
          hours,
          minutes,
          timezone,
        },
      });
    },
    async deactivate() {
      const {
        http,
        unsubscribe,
      } = this;

      await unsubscribe({
        data: {
          hookUrl: http.endpoint,
        },
      });
    },
  },
  methods: {
    generateMeta() {
      const ts = Date.now();
      return {
        id: ts,
        summary: "Event Message Received",
        ts,
      };
    },
    processResource(resource) {
      this.$emit(resource, this.generateMeta());
    },
    subscribe(args = {}) {
      return this.app.post({
        path: "/schedule",
        ...args,
      });
    },
    unsubscribe(args = {}) {
      return this.app.post({
        path: "/unschedule",
        ...args,
      });
    },
  },
  run({ body }) {
    if (body.success === true) {
      console.log("Successfully subscribed");
      return;
    }
    this.processResource(body);
  },
};

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
CronfreeappappThis component uses the Cronfree app.
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.
Weekdayswdaysstring[]Select a value from the drop down menu:{ "label": "Every Day", "value": "-1" }{ "label": "Sunday", "value": "0" }{ "label": "Monday", "value": "1" }{ "label": "Tuesday", "value": "2" }{ "label": "Wednesday", "value": "3" }{ "label": "Thursday", "value": "4" }{ "label": "Friday", "value": "5" }{ "label": "Saturday", "value": "6" }
Monthsmonthsstring[]Select a value from the drop down menu:{ "label": "Every Month", "value": "-1" }{ "label": "January", "value": "1" }{ "label": "February", "value": "2" }{ "label": "March", "value": "3" }{ "label": "April", "value": "4" }{ "label": "May", "value": "5" }{ "label": "June", "value": "6" }{ "label": "July", "value": "7" }{ "label": "August", "value": "8" }{ "label": "September", "value": "9" }{ "label": "October", "value": "10" }{ "label": "November", "value": "11" }{ "label": "December", "value": "12" }
Daysmdaysstring[]Select a value from the drop down menu:{ "label": "Every Day", "value": "-1" }{ "label": "1", "value": "1" }{ "label": "2", "value": "2" }{ "label": "3", "value": "3" }{ "label": "4", "value": "4" }{ "label": "5", "value": "5" }{ "label": "6", "value": "6" }{ "label": "7", "value": "7" }{ "label": "8", "value": "8" }{ "label": "9", "value": "9" }{ "label": "10", "value": "10" }{ "label": "11", "value": "11" }{ "label": "12", "value": "12" }{ "label": "13", "value": "13" }{ "label": "14", "value": "14" }{ "label": "15", "value": "15" }{ "label": "16", "value": "16" }{ "label": "17", "value": "17" }{ "label": "18", "value": "18" }{ "label": "19", "value": "19" }{ "label": "20", "value": "20" }{ "label": "21", "value": "21" }{ "label": "22", "value": "22" }{ "label": "23", "value": "23" }{ "label": "24", "value": "24" }{ "label": "25", "value": "25" }{ "label": "26", "value": "26" }{ "label": "27", "value": "27" }{ "label": "28", "value": "28" }{ "label": "29", "value": "29" }{ "label": "30", "value": "30" }{ "label": "31", "value": "31" }
Hourshoursstring[]Select a value from the drop down menu:{ "label": "Every Hour", "value": "-1" }{ "label": "00:00", "value": "0" }{ "label": "01:00", "value": "1" }{ "label": "02:00", "value": "2" }{ "label": "03:00", "value": "3" }{ "label": "04:00", "value": "4" }{ "label": "05:00", "value": "5" }{ "label": "06:00", "value": "6" }{ "label": "07:00", "value": "7" }{ "label": "08:00", "value": "8" }{ "label": "09:00", "value": "9" }{ "label": "10:00", "value": "10" }{ "label": "11:00", "value": "11" }{ "label": "12:00", "value": "12" }{ "label": "13:00", "value": "13" }{ "label": "14:00", "value": "14" }{ "label": "15:00", "value": "15" }{ "label": "16:00", "value": "16" }{ "label": "17:00", "value": "17" }{ "label": "18:00", "value": "18" }{ "label": "19:00", "value": "19" }{ "label": "20:00", "value": "20" }{ "label": "21:00", "value": "21" }{ "label": "22:00", "value": "22" }{ "label": "23:00", "value": "23" }
Minutesminutesstring[]Select a value from the drop down menu:{ "label": "Every Minute", "value": "-1" }{ "label": "00:00", "value": "0" }{ "label": "00:01", "value": "1" }{ "label": "00:02", "value": "2" }{ "label": "00:03", "value": "3" }{ "label": "00:04", "value": "4" }{ "label": "00:05", "value": "5" }{ "label": "00:06", "value": "6" }{ "label": "00:07", "value": "7" }{ "label": "00:08", "value": "8" }{ "label": "00:09", "value": "9" }{ "label": "00:10", "value": "10" }{ "label": "00:11", "value": "11" }{ "label": "00:12", "value": "12" }{ "label": "00:13", "value": "13" }{ "label": "00:14", "value": "14" }{ "label": "00:15", "value": "15" }{ "label": "00:16", "value": "16" }{ "label": "00:17", "value": "17" }{ "label": "00:18", "value": "18" }{ "label": "00:19", "value": "19" }{ "label": "00:20", "value": "20" }{ "label": "00:21", "value": "21" }{ "label": "00:22", "value": "22" }{ "label": "00:23", "value": "23" }{ "label": "00:24", "value": "24" }{ "label": "00:25", "value": "25" }{ "label": "00:26", "value": "26" }{ "label": "00:27", "value": "27" }{ "label": "00:28", "value": "28" }{ "label": "00:29", "value": "29" }{ "label": "00:30", "value": "30" }{ "label": "00:31", "value": "31" }{ "label": "00:32", "value": "32" }{ "label": "00:33", "value": "33" }{ "label": "00:34", "value": "34" }{ "label": "00:35", "value": "35" }{ "label": "00:36", "value": "36" }{ "label": "00:37", "value": "37" }{ "label": "00:38", "value": "38" }{ "label": "00:39", "value": "39" }{ "label": "00:40", "value": "40" }{ "label": "00:41", "value": "41" }{ "label": "00:42", "value": "42" }{ "label": "00:43", "value": "43" }{ "label": "00:44", "value": "44" }{ "label": "00:45", "value": "45" }{ "label": "00:46", "value": "46" }{ "label": "00:47", "value": "47" }{ "label": "00:48", "value": "48" }{ "label": "00:49", "value": "49" }{ "label": "00:50", "value": "50" }{ "label": "00:51", "value": "51" }{ "label": "00:52", "value": "52" }{ "label": "00:53", "value": "53" }{ "label": "00:54", "value": "54" }{ "label": "00:55", "value": "55" }{ "label": "00:56", "value": "56" }{ "label": "00:57", "value": "57" }{ "label": "00:58", "value": "58" }{ "label": "00:59", "value": "59" }
TimezonetimezonestringSelect a value from the drop down menu:Africa/AbidjanAfrica/AccraAfrica/Addis_AbabaAfrica/AlgiersAfrica/AsmaraAfrica/BamakoAfrica/BanguiAfrica/BanjulAfrica/BissauAfrica/BlantyreAfrica/BrazzavilleAfrica/BujumburaAfrica/CairoAfrica/CasablancaAfrica/CeutaAfrica/ConakryAfrica/DakarAfrica/Dar_es_SalaamAfrica/DjiboutiAfrica/DoualaAfrica/El_AaiunAfrica/FreetownAfrica/GaboroneAfrica/HarareAfrica/JohannesburgAfrica/JubaAfrica/KampalaAfrica/KhartoumAfrica/KigaliAfrica/KinshasaAfrica/LagosAfrica/LibrevilleAfrica/LomeAfrica/LuandaAfrica/LubumbashiAfrica/LusakaAfrica/MalaboAfrica/MaputoAfrica/MaseruAfrica/MbabaneAfrica/MogadishuAfrica/MonroviaAfrica/NairobiAfrica/NdjamenaAfrica/NiameyAfrica/NouakchottAfrica/OuagadougouAfrica/Porto-NovoAfrica/Sao_TomeAfrica/TripoliAfrica/TunisAfrica/WindhoekAmerica/AdakAmerica/AnchorageAmerica/AnguillaAmerica/AntiguaAmerica/AraguainaAmerica/Argentina/Buenos_AiresAmerica/Argentina/CatamarcaAmerica/Argentina/CordobaAmerica/Argentina/JujuyAmerica/Argentina/La_RiojaAmerica/Argentina/MendozaAmerica/Argentina/Rio_GallegosAmerica/Argentina/SaltaAmerica/Argentina/San_JuanAmerica/Argentina/San_LuisAmerica/Argentina/TucumanAmerica/Argentina/UshuaiaAmerica/ArubaAmerica/AsuncionAmerica/AtikokanAmerica/BahiaAmerica/Bahia_BanderasAmerica/BarbadosAmerica/BelemAmerica/BelizeAmerica/Blanc-SablonAmerica/Boa_VistaAmerica/BogotaAmerica/BoiseAmerica/Cambridge_BayAmerica/Campo_GrandeAmerica/CancunAmerica/CaracasAmerica/CayenneAmerica/CaymanAmerica/ChicagoAmerica/ChihuahuaAmerica/Ciudad_JuarezAmerica/Costa_RicaAmerica/CrestonAmerica/CuiabaAmerica/CuracaoAmerica/DanmarkshavnAmerica/DawsonAmerica/Dawson_CreekAmerica/DenverAmerica/DetroitAmerica/DominicaAmerica/EdmontonAmerica/EirunepeAmerica/El_SalvadorAmerica/Fort_NelsonAmerica/FortalezaAmerica/Glace_BayAmerica/Goose_BayAmerica/Grand_TurkAmerica/GrenadaAmerica/GuadeloupeAmerica/GuatemalaAmerica/GuayaquilAmerica/GuyanaAmerica/HalifaxAmerica/HavanaAmerica/HermosilloAmerica/Indiana/IndianapolisAmerica/Indiana/KnoxAmerica/Indiana/MarengoAmerica/Indiana/PetersburgAmerica/Indiana/Tell_CityAmerica/Indiana/VevayAmerica/Indiana/VincennesAmerica/Indiana/WinamacAmerica/InuvikAmerica/IqaluitAmerica/JamaicaAmerica/JuneauAmerica/Kentucky/LouisvilleAmerica/Kentucky/MonticelloAmerica/KralendijkAmerica/La_PazAmerica/LimaAmerica/Los_AngelesAmerica/Lower_PrincesAmerica/MaceioAmerica/ManaguaAmerica/ManausAmerica/MarigotAmerica/MartiniqueAmerica/MatamorosAmerica/MazatlanAmerica/MenomineeAmerica/MeridaAmerica/MetlakatlaAmerica/Mexico_CityAmerica/MiquelonAmerica/MonctonAmerica/MonterreyAmerica/MontevideoAmerica/MontserratAmerica/NassauAmerica/New_YorkAmerica/NomeAmerica/NoronhaAmerica/North_Dakota/BeulahAmerica/North_Dakota/CenterAmerica/North_Dakota/New_SalemAmerica/NuukAmerica/OjinagaAmerica/PanamaAmerica/ParamariboAmerica/PhoenixAmerica/Port-au-PrinceAmerica/Port_of_SpainAmerica/Porto_VelhoAmerica/Puerto_RicoAmerica/Punta_ArenasAmerica/Rankin_InletAmerica/RecifeAmerica/ReginaAmerica/ResoluteAmerica/Rio_BrancoAmerica/SantaremAmerica/SantiagoAmerica/Santo_DomingoAmerica/Sao_PauloAmerica/ScoresbysundAmerica/SitkaAmerica/St_BarthelemyAmerica/St_JohnsAmerica/St_KittsAmerica/St_LuciaAmerica/St_ThomasAmerica/St_VincentAmerica/Swift_CurrentAmerica/TegucigalpaAmerica/ThuleAmerica/TijuanaAmerica/TorontoAmerica/TortolaAmerica/VancouverAmerica/WhitehorseAmerica/WinnipegAmerica/YakutatAntarctica/CaseyAntarctica/DavisAntarctica/DumontDUrvilleAntarctica/MacquarieAntarctica/MawsonAntarctica/McMurdoAntarctica/PalmerAntarctica/RotheraAntarctica/SyowaAntarctica/TrollAntarctica/VostokArctic/LongyearbyenAsia/AdenAsia/AlmatyAsia/AmmanAsia/AnadyrAsia/AqtauAsia/AqtobeAsia/AshgabatAsia/AtyrauAsia/BaghdadAsia/BahrainAsia/BakuAsia/BangkokAsia/BarnaulAsia/BeirutAsia/BishkekAsia/BruneiAsia/ChitaAsia/ChoibalsanAsia/ColomboAsia/DamascusAsia/DhakaAsia/DiliAsia/DubaiAsia/DushanbeAsia/FamagustaAsia/GazaAsia/HebronAsia/Ho_Chi_MinhAsia/Hong_KongAsia/HovdAsia/IrkutskAsia/JakartaAsia/JayapuraAsia/JerusalemAsia/KabulAsia/KamchatkaAsia/KarachiAsia/KathmanduAsia/KhandygaAsia/KolkataAsia/KrasnoyarskAsia/Kuala_LumpurAsia/KuchingAsia/KuwaitAsia/MacauAsia/MagadanAsia/MakassarAsia/ManilaAsia/MuscatAsia/NicosiaAsia/NovokuznetskAsia/NovosibirskAsia/OmskAsia/OralAsia/Phnom_PenhAsia/PontianakAsia/PyongyangAsia/QatarAsia/QostanayAsia/QyzylordaAsia/RiyadhAsia/SakhalinAsia/SamarkandAsia/SeoulAsia/ShanghaiAsia/SingaporeAsia/SrednekolymskAsia/TaipeiAsia/TashkentAsia/TbilisiAsia/TehranAsia/ThimphuAsia/TokyoAsia/TomskAsia/UlaanbaatarAsia/UrumqiAsia/Ust-NeraAsia/VientianeAsia/VladivostokAsia/YakutskAsia/YangonAsia/YekaterinburgAsia/YerevanAtlantic/AzoresAtlantic/BermudaAtlantic/CanaryAtlantic/Cape_VerdeAtlantic/FaroeAtlantic/MadeiraAtlantic/ReykjavikAtlantic/South_GeorgiaAtlantic/St_HelenaAtlantic/StanleyAustralia/AdelaideAustralia/BrisbaneAustralia/Broken_HillAustralia/DarwinAustralia/EuclaAustralia/HobartAustralia/LindemanAustralia/Lord_HoweAustralia/MelbourneAustralia/PerthAustralia/SydneyEurope/AmsterdamEurope/AndorraEurope/AstrakhanEurope/AthensEurope/BelgradeEurope/BerlinEurope/BratislavaEurope/BrusselsEurope/BucharestEurope/BudapestEurope/BusingenEurope/ChisinauEurope/CopenhagenEurope/DublinEurope/GibraltarEurope/GuernseyEurope/HelsinkiEurope/Isle_of_ManEurope/IstanbulEurope/JerseyEurope/KaliningradEurope/KirovEurope/KyivEurope/LisbonEurope/LjubljanaEurope/LondonEurope/LuxembourgEurope/MadridEurope/MaltaEurope/MariehamnEurope/MinskEurope/MonacoEurope/MoscowEurope/OsloEurope/ParisEurope/PodgoricaEurope/PragueEurope/RigaEurope/RomeEurope/SamaraEurope/San_MarinoEurope/SarajevoEurope/SaratovEurope/SimferopolEurope/SkopjeEurope/SofiaEurope/StockholmEurope/TallinnEurope/TiraneEurope/UlyanovskEurope/VaduzEurope/VaticanEurope/ViennaEurope/VilniusEurope/VolgogradEurope/WarsawEurope/ZagrebEurope/ZurichIndian/AntananarivoIndian/ChagosIndian/ChristmasIndian/CocosIndian/ComoroIndian/KerguelenIndian/MaheIndian/MaldivesIndian/MauritiusIndian/MayotteIndian/ReunionPacific/ApiaPacific/AucklandPacific/BougainvillePacific/ChathamPacific/ChuukPacific/EasterPacific/EfatePacific/FakaofoPacific/FijiPacific/FunafutiPacific/GalapagosPacific/GambierPacific/GuadalcanalPacific/GuamPacific/HonoluluPacific/KantonPacific/KiritimatiPacific/KosraePacific/KwajaleinPacific/MajuroPacific/MarquesasPacific/MidwayPacific/NauruPacific/NiuePacific/NorfolkPacific/NoumeaPacific/Pago_PagoPacific/PalauPacific/PitcairnPacific/PohnpeiPacific/Port_MoresbyPacific/RarotongaPacific/SaipanPacific/TahitiPacific/TarawaPacific/TongatapuPacific/WakePacific/Wallis

Trigger Authentication

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

About Cronfree

Cronfree Time Scheduler creates multiple reoccurring tasks with no-code automation.

Action

Description:Creates a new person in Salesloft. [See the documentation](https://developers.salesloft.com/docs/api/people-create/)
Version:0.0.1
Key:salesloft-create-person

Action Code

import salesloft from "../../salesloft.app.mjs";
import { ConfigurationError } from "@pipedream/platform";

export default {
  key: "salesloft-create-person",
  name: "Create Person",
  description: "Creates a new person in Salesloft. [See the documentation](https://developers.salesloft.com/docs/api/people-create/)",
  version: "0.0.1",
  type: "action",
  props: {
    salesloft,
    info: {
      type: "alert",
      alertType: "info",
      content: "Either `Email Address` or both `Phone` and `Last Name` must be provided.",
    },
    email: {
      type: "string",
      label: "Email",
      description: "The email address of the person",
      optional: true,
    },
    firstName: {
      type: "string",
      label: "First Name",
      description: "The first name of the person",
      optional: true,
    },
    lastName: {
      type: "string",
      label: "Last Name",
      description: "The last name of the person",
      optional: true,
    },
    phone: {
      type: "string",
      label: "Phone",
      description: "The phone number of the person",
      optional: true,
    },
    title: {
      type: "string",
      label: "Title",
      description: "The job title of the person",
      optional: true,
    },
    company: {
      type: "string",
      label: "Company",
      description: "The company name of the person",
      optional: true,
    },
  },
  async run({ $ }) {
    if (!this.email && !(this.phone && this.lastName)) {
      throw new ConfigurationError("Either `Email Address` or both `Phone` and `Last Name` must be provided");
    }

    const response = await this.salesloft.createPerson({
      $,
      data: {
        email_address: this.email,
        first_name: this.firstName,
        last_name: this.lastName,
        phone: this.phone,
        title: this.title,
        company_name: this.company,
      },
    });

    $.export("$summary", `Successfully created person (ID: ${response.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
SalesloftsalesloftappThis component uses the Salesloft app.
Emailemailstring

The email address of the person

First NamefirstNamestring

The first name of the person

Last NamelastNamestring

The last name of the person

Phonephonestring

The phone number of the person

Titletitlestring

The job title of the person

Companycompanystring

The company name of the person

Action Authentication

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

About Salesloft

The Leading Revenue Orchestration Platform

More Ways to Connect Salesloft + Cronfree

Add Person to Cadence with Salesloft API on New Message Received (Instant) from Cronfree API
Cronfree + Salesloft
 
Try it
Create Note with Salesloft API on New Message Received (Instant) from Cronfree API
Cronfree + Salesloft
 
Try it
New Message Received (Instant) from the Cronfree API

Emit new event when a new message is received. See the documentation

 
Try it
Cadence Updated (Instant) from the Salesloft API

Emit new event when a cadence is updated in Salesloft. See the documentation

 
Try it
New Email Activity (Instant) from the Salesloft API

Emit new event when an email is updated in Salesloft. See the documentation

 
Try it
New Person (Instant) from the Salesloft API

Emit new event when a person is created in Salesloft. See the documentation

 
Try it
Add Person to Cadence with the Salesloft API

Adds a person to a cadence in Salesloft. See the documentation

 
Try it
Create Note with the Salesloft API

Creates a new note in Salesloft. See the documentation

 
Try it
Create Person with the Salesloft API

Creates a new person in Salesloft. 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.