with Database and Explorium?
Emit new event when a business update occurs. See the documentation
Emit new event when a prospect update occurs. See the documentation
Enrich business data with comprehensive insights for lead generation, risk assessment, and business intelligence. See the documentation
Enrich prospect records with comprehensive professional and contact information to enhance outreach and engagement strategies. See the documentation
Fetches business records using filters. See the documentation
The Database API on Pipedream allows users to execute SQL commands directly within workflows, enabling rich and dynamic data manipulation and storage. It supports PostgreSQL, MySQL, and SQLite, making it a versatile option for managing data across various database systems. With this API, users can perform tasks such as data insertion, querying, updates, and deletions, directly within their automations, facilitating real-time data processing and integration across multiple platforms.
import postgresql from "@pipedream/postgresql";
export default {
props: {
postgresql,
sql: {
type: "sql",
auth: {
app: "postgresql",
},
label: "PostreSQL Query",
},
},
async run({ $ }) {
const args = this.postgresql.executeQueryAdapter(this.sql);
const data = await this.postgresql.executeQuery(args);
return data;
},
};
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
explorium: {
type: "app",
app: "explorium",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.explorium.ai/v1/credits`,
headers: {
"api_key": `${this.explorium.$auth.api_key}`,
},
})
},
})