Trigger workflows on new emails, and send emails to yourself as part of a Pipedream workflow.
Get a unique address where you can send emails to trigger your workflow.
Returns json schemas for input and output parameters of a webservice.
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
Executes provided input parameters in the uploaded Excel document to retrieve the calculated output.
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
The BusinessLogic API offers a platform for automating complex business processes and logic. It provides endpoints to create, retrieve, update, and manage business rules and components programmatically. With Pipedream, you can integrate this API into workflows to trigger actions based on business events, manage data across multiple systems, and streamline decision-making processes. By leveraging Pipedream's serverless execution model, you can set up event-driven pipelines that react in real-time to changes in BusinessLogic without managing infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
businesslogic: {
type: "app",
app: "businesslogic",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.businesslogic.online/describe`,
headers: {
"X-Auth-Token": `${this.businesslogic.$auth.live_token}`,
"Content-Type": `application/json`,
},
})
},
})