with EasyBroker and Database?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
easybroker: {
type: "app",
app: "easybroker",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.easybroker.com/v1/collaborations`,
headers: {
"x-authorization": `${this.easybroker.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})
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;
},
};