MySQL is an open-source relational database management system.
Emit new event for each new company created. See the docs here
Emit new event for each new contact created. See the docs here
Emit new event when the specified tag is added to a contact. See the docs here
The MySQL application on Pipedream enables direct interaction with your MySQL databases, allowing you to perform CRUD operations—create, read, update, delete—on your data with ease. You can leverage these capabilities to automate data synchronization, report generation, and event-based triggers that kick off workflows in other apps. With Pipedream's serverless platform, you can connect MySQL to hundreds of other services without managing infrastructure, crafting complex code, or handling authentication.
import mysql from '@pipedream/mysql';
export default defineComponent({
props: {
mysql,
},
async run({steps, $}) {
// Component source code:
// https://github.com/PipedreamHQ/pipedream/tree/master/components/mysql
const queryObj = {
sql: "SELECT NOW()",
values: [], // Ignored since query does not contain placeholders
};
return await this.mysql.executeQuery(queryObj);
},
});
The Solve CRM API offers a variety of endpoints to manage customer relationships and sales processes programmatically. It enables users to create, read, update, and delete customer data, manage projects, track email communication, and automate workflows involving contacts and companies. Pipedream harnesses this power, allowing you to connect Solve CRM with a myriad of other apps and services to streamline sales pipelines, enhance customer engagement, and automate routine tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
solve_crm: {
type: "app",
app: "solve_crm",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://secure.solve360.com/contacts`,
auth: {
username: `${this.solve_crm.$auth.email}`,
password: `${this.solve_crm.$auth.api_token}`,
},
})
},
})