with AttractWell and ViewDNS.info?
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.
Performs a DNS record lookup to retrieve various DNS record types for a domain. See the documentation
Creates or updates a contact with the provided identification and contact details.
Retrieves the IP address history for a domain. See the documentation
Approves, rejects, or unapproves a lesson in the AttractWell system based on the selected status.
Performs a reverse IP lookup to find domains hosted on the same IP address. 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: {
viewdns_info: {
type: "app",
app: "viewdns_info",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.viewdns.info/ping/v2/`,
params: {
host: `pipedream.com`,
apikey: `${this.viewdns_info.$auth.api_key}`,
output: `json`,
},
})
},
})