CRM, sales & marketing platform
Emit new event when a threat list is updated. See the documentation
Scan a given URL or URLs for potential security threats. See the documentation
Get the latest threat list update information from Google Safe Browsing API. See the documentation
The Keap (Infusionsoft) API is a powerful tool that unlocks advanced customer relationship management, marketing automation, and sales features. It allows you to manage contacts, create and update customer records, send emails, set up marketing campaigns, and more, automating and integrating these processes within your business workflows. With Pipedream's serverless execution environment, you can harness this API to craft custom automations, trigger sequences based on specific actions, and connect Keap to a multitude of other apps and services, streamlining your sales and marketing efforts.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
infusionsoft: {
type: "app",
app: "infusionsoft",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.infusionsoft.com/crm/rest/v1/oauth/connect/userinfo`,
headers: {
Authorization: `Bearer ${this.infusionsoft.$auth.oauth_access_token}`,
},
})
},
})
The Google Safe Browsing API lets you check URLs against Google's constantly updated lists of unsafe web resources. These include social engineering sites (like phishing and deceptive sites) and sites that host malware or unwanted software. Within Pipedream, you can leverage this API to automate the process of scanning URLs in various contexts, such as user-generated content, emails, or within applications that require high-security measures.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
google_safebrowsing: {
type: "app",
app: "google_safebrowsing",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://safebrowsing.googleapis.com/v4/threatLists`,
params: {
key: `${this.google_safebrowsing.$auth.api_key}`,
},
})
},
})