← Cronfree + Fly.io integrations

Create Machine with Fly.io API on New Message Received (Instant) from Cronfree API

Pipedream makes it easy to connect APIs for Fly.io, Cronfree and 3,000+ other apps remarkably fast.

Trigger workflow on
New Message Received (Instant) from the Cronfree API
Next, do this
Create Machine with the Fly.io 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 Fly.io 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 Machine action
    1. Connect your Fly.io account
    2. Select a App Name
    3. Configure Machine Name
    4. Configure Machine Configuration
    5. Optional- Configure Skip Launch
    6. Optional- Configure Skip Service Registration
  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:Create a machine within a specific app using the details provided in the request body. [See the documentation](https://docs.machines.dev/#tag/machines/post/apps/%7Bapp_name%7D/machines)
Version:0.0.2
Key:fly_io-create-machine

Fly.io Overview

Fly.io is a platform that allows you to run full-stack apps and databases close to your users globally. The Fly.io API enables developers to manage applications, handle deployments, and scale their services dynamically. Using the Fly.io API with Pipedream provides a seamless way to automate these operations, integrate with other services, and enhance serverless workflow capabilities.

Action Code

import app from "../../fly_io.app.mjs";
import utils from "../../common/utils.mjs";

export default {
  key: "fly_io-create-machine",
  name: "Create Machine",
  description: "Create a machine within a specific app using the details provided in the request body. [See the documentation](https://docs.machines.dev/#tag/machines/post/apps/%7Bapp_name%7D/machines)",
  version: "0.0.2",
  annotations: {
    destructiveHint: false,
    openWorldHint: true,
    readOnlyHint: false,
  },
  type: "action",
  props: {
    app,
    appName: {
      propDefinition: [
        app,
        "appId",
        () => ({
          mapper: ({ name }) => name,
        }),
      ],
    },
    name: {
      type: "string",
      label: "Machine Name",
      description: "The name of the machine within the app",
    },
    config: {
      type: "string",
      label: "Machine Configuration",
      description: "The configuration details of the machine in JSON format. Eg. `{ \"auto_destroy\": true, \"image\": \"ubuntu:latest\" }`",
    },
    skipLaunch: {
      type: "boolean",
      label: "Skip Launch",
      description: "Whether to skip the launch of the machine",
      optional: true,
    },
    skipServiceRegistration: {
      type: "boolean",
      label: "Skip Service Registration",
      description: "Whether to skip the registration of the machine as a service",
      optional: true,
    },
  },
  methods: {
    createMachine({
      appName, ...args
    } = {}) {
      return this.app.post({
        path: `/apps/${appName}/machines`,
        ...args,
      });
    },
  },
  async run({ $ }) {
    const {
      createMachine,
      appName,
      name,
      config,
      skipLaunch,
      skipServiceRegistration,
    } = this;
    const response = await createMachine({
      $,
      appName,
      data: {
        name,
        config: utils.valueToObject(config),
        skip_launch: skipLaunch,
        skip_service_registration: skipServiceRegistration,
      },
    });
    $.export("$summary", `Successfully created machine with 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
Fly.ioappappThis component uses the Fly.io app.
App NameappNamestringSelect a value from the drop down menu.
Machine Namenamestring

The name of the machine within the app

Machine Configurationconfigstring

The configuration details of the machine in JSON format. Eg. { "auto_destroy": true, "image": "ubuntu:latest" }

Skip LaunchskipLaunchboolean

Whether to skip the launch of the machine

Skip Service RegistrationskipServiceRegistrationboolean

Whether to skip the registration of the machine as a service

Action Authentication

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

About Fly.io

Fly.io transforms containers into micro-VMs that run on our hardware in 30+ regions on six continents.

More Ways to Connect Fly.io + Cronfree

Create Volume with Fly.io API on New Message Received (Instant) from Cronfree API
Cronfree + Fly.io
 
Try it
Create App with Fly.io API on New Message Received (Instant) from Cronfree API
Cronfree + Fly.io
 
Try it
New Message Received (Instant) from the Cronfree API

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

 
Try it
New Event Created from the Fly.io API

Emit new event when a new event is created in Fly.io. See the documentation

 
Try it
Create App with the Fly.io API

Create an app with the specified details in the request body. See the documentation

 
Try it
Create Machine with the Fly.io API

Create a machine within a specific app using the details provided in the request body. See the documentation

 
Try it
Create Volume with the Fly.io API

Create a volume for a specific app using the details provided in the request body. 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.