MX is a fintech company that offers open banking, bank APIs, mobile banking, and more via modern connectivity and data enhancement.
Creates a new account for a specific user. See the documentation
Run any Bash in a Pipedream step within your workflow. Refer to the Pipedream Bash docs to learn more.
Creates a new user in the MX Technologies platform. See the documentation
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}`,
},
})
},
})
# $PIPEDREAM_STEPS file contains data from previous steps
cat $PIPEDREAM_STEPS | jq .trigger.context.id
# Write data to $PIPEDREAM_EXPORTS to return it from the step
# Exports must be written as key=value
echo foo=bar >> $PIPEDREAM_EXPORTS