MongoDB is an open source NoSQL database management program.
Create a new document in a collection of your choice. See the docs here
Searches for contact information based on user-defined props which may include identifiers such as name, email, or company. Returns the contact data if a match is found within the LeadIQ database. See the documentation
Execute an aggregation pipeline on a MongoDB collection. See the documentation
The MongoDB API provides powerful capabilities to interact with a MongoDB database, allowing you to perform CRUD (Create, Read, Update, Delete) operations, manage databases, and execute sophisticated queries. With Pipedream, you can harness these abilities to automate tasks, sync data across various apps, and react to events in real-time. It’s a combo that’s particularly potent for managing data workflows, syncing application states, or triggering actions based on changes to your data.
import mongodb from 'mongodb'
export default defineComponent({
props: {
mongodb: {
type: "app",
app: "mongodb",
},
collection: {
type: "string"
},
filter: {
type: "object"
}
},
async run({steps, $}) {
const MongoClient = mongodb.MongoClient
const {
database,
hostname,
username,
password,
} = this.mongodb.$auth
const url = `mongodb+srv://${username}:${password}@${hostname}/test?retryWrites=true&w=majority`
const client = await MongoClient.connect(url, {
useNewUrlParser: true,
useUnifiedTopology: true
})
const db = client.db(database)
const results = await db.collection(this.collection).find(this.filter).toArray();
$.export('results', results);
await client.close()
},
})
The LeadIQ API enables seamless integration of LeadIQ’s capabilities into various marketing and sales workflows, automating the lead capture and enrichment processes. By harnessing this API on Pipedream, you can automate the extraction of lead data, sync it with CRM systems, and trigger personalized outreach campaigns, all within a serverless environment. This reduces manual tasks, enhances lead quality, and accelerates the sales pipeline.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
leadiq: {
type: "app",
app: "leadiq",
}
},
async run({steps, $}) {
const data = {
"query": `query Usage {
usage {
planUsage {
name
usageType
creditType
units
cap
billingType
}
}
}`,
}
return await axios($, {
method: "post",
url: `https://api.leadiq.com/graphql`,
auth: {
username: `${this.leadiq.$auth.api_key}`,
password: ``,
},
data,
})
},
})