with SwarmNode and Corsizio?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
swarmnode: {
type: "app",
app: "swarmnode",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.swarmnode.ai/v1/agents/`,
headers: {
Authorization: `Bearer ${this.swarmnode.$auth.api_key}`,
},
})
},
})
Corsizio is a platform for event registration, payment processing, and attendee management. With the Corsizio API, you can automate your event management workflows on Pipedream, such as synchronizing attendee data with a CRM, sending custom emails based on event registration status, or processing payments and refunding attendees. By utilizing Pipedream's serverless platform, you can create intricate automations that respond to various Corsizio events, handle data transformation, and interact with countless other APIs for a seamless integration experience.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
corsizio: {
type: "app",
app: "corsizio",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.corsizio.com/v1/account`,
headers: {
Authorization: `Bearer ${this.corsizio.$auth.api_secret_key}`,
},
})
},
})