with Mailosaur and Browserbase?
Emit new event when a message matching specific criteria is received. See the documentation
Emit new event when a message is received in a specified Mailosaur inbox. See the documentation
Emit new event when a new session is created. See the documentation
Sends an email through Mailosaur. See the documentation
Deletes an email from a Mailosaur server using its email ID. See the documentation
Creates a new browser session with specified settings. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mailosaur: {
type: "app",
app: "mailosaur",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://mailosaur.com/api/servers`,
auth: {
username: `api`,
password: `${this.mailosaur.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
browserbase: {
type: "app",
app: "browserbase",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.browserbase.com/v1/projects`,
headers: {
"x-bb-api-key": `${this.browserbase.$auth.api_key}`,
},
})
},
})