with AttractWell and ScrapeGraphAI?
Emit new event when a contact becomes a new member of a vault.
Emit new event when a new registration for an event takes place.
Emit new event when a lead is gained from a landing page.
Extract content from HTML content using AI by providing a natural language prompt and the HTML content. See the documentation
Creates or updates a contact with the provided identification and contact details.
Convert any webpage into clean, readable Markdown format. See the documentation
Approves, rejects, or unapproves a lesson in the AttractWell system based on the selected status.
Extract content from a webpage using AI by providing a natural language prompt and a URL. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
attractwell: {
type: "app",
app: "attractwell",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.attractwell.com/api/v1/campaigns`,
headers: {
Authorization: `Bearer ${this.attractwell.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
scrapegraphai: {
type: "app",
app: "scrapegraphai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.scrapegraphai.com/v1/credits`,
headers: {
"sgai-apikey": `${this.scrapegraphai.$auth.api_key}`,
},
})
},
})