Trigger workflows on new emails, and send emails to yourself as part of a Pipedream workflow.
Creates a new account for a specific user. See the documentation
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
Creates a new user in the MX Technologies platform. See the documentation
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
The MX Technologies API provides a range of financial data solutions, enabling users to obtain insights into personal finances, conduct risk analysis, and offer personalized financial advice. Within Pipedream, you can harness the power of the MX API to automate financial data aggregation, customer profiling, and trigger custom workflows based on financial events or changes in user data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mx_technologies: {
type: "app",
app: "mx_technologies",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.mx_technologies.$auth.environment}.mx.com/users`,
headers: {
"Accept": `application/vnd.mx.api.v1+json`,
},
auth: {
username: `${this.mx_technologies.$auth.client_id}`,
password: `${this.mx_technologies.$auth.api_key}`,
},
})
},
})