CRM & Unified Customer Platform for Growing Teams.
The Salesmate API enables automation of CRM-related tasks within the Salesmate platform. By leveraging this API on Pipedream, you can craft serverless workflows that interact with Salesmate data, such as contacts, deals, and activities. This allows for seamless integration of Salesmate with other services to enhance sales processes, enable real-time data updates, and trigger custom actions based on specific events within your CRM.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
salesmate: {
type: "app",
app: "salesmate",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.salesmate.$auth.domain}.salesmate.io/apis/core/v4/users`,
headers: {
"Content-Type": `application/json`,
"accessToken": `${this.salesmate.$auth.session_key}`,
"x-linkname": `${this.salesmate.$auth.linked_name}`,
},
})
},
})
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);
},
});