with Airbyte and Mailboxlayer?
The Airbyte API allows for creating and managing data integration pipelines between various sources and destinations, automating data synchronization tasks, and monitoring the status of those pipelines. On Pipedream, you can leverage the Airbyte API to build intricate workflows that react to data events, manipulate and store data, and connect to other services to create rich, automated data pipelines.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
https_airbyte_com: {
type: "app",
app: "https_airbyte_com",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.https_airbyte_com.$auth.url}/v1/connections`,
headers: {
Authorization: `Bearer ${this.https_airbyte_com.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mailboxlayer: {
type: "app",
app: "mailboxlayer",
}
},
async run({steps, $}) {
return await axios($, {
url: `http://apilayer.net/api/check`,
params: {
access_key: `${this.mailboxlayer.$auth.api_key}`,
email: `code.whisperer@pipedream.com`,
},
})
},
})