Fly.io transforms containers into micro-VMs that run on our hardware in 30+ regions on six continents.
Emit new event when a new event is created in Fly.io. See the documentation
Create an app with the specified details in the request body. See the documentation
Create a machine within a specific app using the details provided in the request body. See the documentation
Create a volume for a specific app using the details provided in the request body. See the documentation
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.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fly_io: {
type: "app",
app: "fly_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.machines.dev/v1/apps`,
headers: {
Authorization: `Bearer ${this.fly_io.$auth.access_token}`,
},
params: {
org_slug: `${this.fly_io.$auth.org_slug}`,
},
})
},
})
The Klaviyo API grants you the power to automate and personalize your email marketing efforts. With it, you can manage lists, profiles, and campaigns, track event-driven communications, and analyze the results. By leveraging this API on Pipedream, you can create intricate, automated workflows that respond in real-time to your users' behavior, sync data across multiple platforms, and tailor your marketing strategies to improve engagement and conversion rates.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
klaviyo: {
type: "app",
app: "klaviyo",
}
},
async run({steps, $}) {
return await axios($, {
url: ` https://a.klaviyo.com/api/accounts/`,
headers: {
"Authorization": `Klaviyo-API-Key ${this.klaviyo.$auth.api_key}`,
"revision": `2023-12-15`,
},
})
},
})