MySQL is an open-source relational database management system.
Emit new event when a message is added. See the docs here
Emit new event when you add or modify a new row in a table. See the docs here
Emit new event when new rows are returned from a custom query. See the docs here
Creates a room. The authenticated user is automatically added as a member of the room. See the docs here
Post a plain text or rich text message, and optionally, a file attachment, to a room. 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 Cisco Webex API allows developers to integrate their applications with Cisco's robust collaboration tools, creating a workflow of communication within teams and automating various aspects of the meeting lifecycle, from scheduling to follow-up actions. With this API, you can streamline meeting setups, fetch detailed information about participants and meetings, send messages to spaces (rooms), and manage your Webex resources programmatically. Leveraging Pipedream's capabilities, you can connect these features with other apps to automate complex tasks, analyze meeting data, enhance productivity, and maintain a well-organized communication ecosystem.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cisco_webex: {
type: "app",
app: "cisco_webex",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://webexapis.com/v1/people/me`,
headers: {
Authorization: `Bearer ${this.cisco_webex.$auth.oauth_access_token}`,
},
})
},
})