← MySQL + MX Technologies integrations

Create Account with MX Technologies API on New Column from MySQL API

Pipedream makes it easy to connect APIs for MX Technologies, MySQL and 2,000+ other apps remarkably fast.

Trigger workflow on
New Column from the MySQL API
Next, do this
Create Account with the MX Technologies API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 800,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a MySQL trigger and MX Technologies action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Column trigger
    1. Connect your MySQL account
    2. Configure timer
    3. Select a Table
  3. Configure the Create Account action
    1. Connect your MX Technologies account
    2. Select a User ID
    3. Select a Account Type
    4. Configure Name
    5. Optional- Configure APR
    6. Optional- Configure APY
    7. Optional- Configure Available Balance
    8. Optional- Configure Balance
    9. Optional- Configure Cash Surrender Value
    10. Optional- Configure Credit Limit
    11. Optional- Configure Currency Code
    12. Optional- Configure Death Benefit
    13. Optional- Configure Interest Rate
    14. Optional- Configure Is Closed
    15. Optional- Configure Is Hidden
    16. Optional- Configure Loan Amount
    17. Optional- Configure Metadata
    18. Optional- Configure Nickname
    19. Optional- Configure Original Balance
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event when you add a new column to a table. [See the docs here](https://dev.mysql.com/doc/refman/8.0/en/show-columns.html)
Version:2.0.5
Key:mysql-new-column

MySQL Overview

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.

Trigger Code

import common from "../common/table.mjs";

export default {
  ...common,
  key: "mysql-new-column",
  name: "New Column",
  description: "Emit new event when you add a new column to a table. [See the docs here](https://dev.mysql.com/doc/refman/8.0/en/show-columns.html)",
  type: "source",
  version: "2.0.5",
  dedupe: "unique",
  props: {
    ...common.props,
    db: "$.service.db",
  },
  methods: {
    ...common.methods,
    _getPreviousColumns() {
      return this.db.get("previousColumns");
    },
    _setPreviousColumns(previousColumns) {
      this.db.set("previousColumns", previousColumns);
    },
    async listResults() {
      const { table } = this;
      let previousColumns = this._getPreviousColumns() || [];
      const columns = await this.mysql.listNewColumns({
        table,
        previousColumns,
      });
      this.iterateAndEmitEvents(columns);

      const newColumnNames =
        columns
          .map((column) => column.Field)
          .filter((c) => !previousColumns.includes(c));

      previousColumns = previousColumns.concat(newColumnNames);
      this._setPreviousColumns(previousColumns);
    },
    generateMeta(column) {
      const columnName = column.Field;
      return {
        id: `${columnName}${this.table}`,
        summary: columnName,
        ts: Date.now(),
      };
    },
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
MySQLmysqlappThis component uses the MySQL app.
timer$.interface.timer
TabletablestringSelect a value from the drop down menu.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.

Trigger Authentication

MySQL uses API keys for authentication. When you connect your MySQL account, Pipedream securely stores the keys so you can easily authenticate to MySQL APIs in both code and no-code steps.

Before you connect to your MySQL database from Pipedream, please make sure your database is either:

  1. Accessible from the public internet (You may need to add a firewall rule on 0.0.0.0/0 on port 3306), or
  2. Accessible from a static IP that you've configured using a VPC in Pipedream, and enabled the workflow to connect through that VPC

SSL Setup

Configure SSL on your MySQL database by providing the CA (Certificate Authority), and choosing between Full Verification, Verify Certificate Authority (CA), or Skip Verification. Skipping verification is not recommended as this has serious security implications.

About MySQL

MySQL is an open-source relational database management system.

Action

Description:Creates a new account for a specific user. [See the documentation](https://docs.mx.com/api-reference/platform-api/reference/create-manual-account)
Version:0.0.1
Key:mx_technologies-create-account

MX Technologies Overview

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.

Action Code

import { ACCOUNT_TYPE_OPTIONS } from "../../common/constants.mjs";
import mxTechnologies from "../../mx_technologies.app.mjs";

export default {
  key: "mx_technologies-create-account",
  name: "Create Account",
  description: "Creates a new account for a specific user. [See the documentation](https://docs.mx.com/api-reference/platform-api/reference/create-manual-account)",
  version: "0.0.1",
  type: "action",
  props: {
    mxTechnologies,
    userId: {
      propDefinition: [
        mxTechnologies,
        "userId",
      ],
    },
    accountType: {
      type: "string",
      label: "Account Type",
      description: "The general or parent type of the **account**.",
      options: ACCOUNT_TYPE_OPTIONS,
    },
    name: {
      type: "string",
      label: "Name",
      description: "The human-readable name for the **account**.",
    },
    apr: {
      type: "string",
      label: "APR",
      description: "The annual percentage rate associated with the **account**.",
      optional: true,
    },
    apy: {
      type: "string",
      label: "APY",
      description: "The annual percentage yield associated with the **account**.",
      optional: true,
    },
    availableBalance: {
      type: "string",
      label: "Available Balance",
      description: "The balance that is available for use in asset accounts like checking and savings. **PENDING** transactions are typically taken into account with the available balance, but this may not always be the case. `available_balance` will usually be a positive value for all account types, determined in the same way as the **balance** field.",
      optional: true,
    },
    balance: {
      type: "string",
      label: "Balance",
      description: "The current balance of the account. **PENDING** transactions are typically not taken into account with the current balance, but this may not always be the case. This is the value used for the account balance displayed in MX UIs. The balance will usually be a positive value for all account types. Asset-type accounts (**CHECKING**, **SAVINGS**, **INVESTMENT**) may have a negative balance if they are in overdraft. Debt-type accounts (**CREDIT_CARD**, **LOAN**, **LINE_OF_CREDIT**, **MORTGAGE**) may have a negative balance if they are overpaid.",
      optional: true,
    },
    cashSurrenderValue: {
      type: "string",
      label: "Cash Surrender Value",
      description: "The sum of money paid to the policyholder or annuity holder in the event the policy is voluntarily terminated before it matures, or the insured event occurs.",
      optional: true,
    },
    creditLimit: {
      type: "string",
      label: "Credit Limit",
      description: "The credit limit associated with the **account**.",
      optional: true,
    },
    currencyCode: {
      type: "string",
      label: "Currency Code",
      description: "The three-character ISO 4217 currency code.",
      optional: true,
    },
    deathBenefit: {
      type: "integer",
      label: "Death Benefit",
      description: "The amount paid to the beneficiary of the account upon death of the account owner.",
      optional: true,
    },
    interestRate: {
      type: "string",
      label: "Interest Rate",
      description: "The interest rate associated with the **account**.",
      optional: true,
    },
    isClosed: {
      type: "boolean",
      label: "Is Closed",
      description: "This indicates whether an account has been closed.",
      optional: true,
    },
    isHidden: {
      type: "boolean",
      label: "Is Hidden",
      description: "This indicates whether the account is hidden.",
      optional: true,
    },
    loanAmount: {
      type: "string",
      label: "Loan Amount",
      description: "The amount of the loan associated with the **account**.",
      optional: true,
    },
    metadata: {
      propDefinition: [
        mxTechnologies,
        "metadata",
      ],
      description: "Additional information a partner can store on the **account**.",
      optional: true,
    },
    nickname: {
      type: "string",
      label: "Nickname",
      description: "An alternate name for the **account**.",
      optional: true,
    },
    originalBalance: {
      type: "string",
      label: "Original Balance",
      description: "The original balance associated with the **account**.",
      optional: true,
    },
  },
  async run({ $ }) {
    const response = await this.mxTechnologies.createManualAccount({
      $,
      userGuid: this.userId,
      data: {
        account: {
          account_type: this.accountType,
          name: this.name,
          apr: this.apr && parseFloat(this.apr),
          apy: this.apy && parseFloat(this.apy),
          available_balance: this.availableBalance && parseFloat(this.availableBalance),
          balance: this.balance && parseFloat(this.balance),
          cash_surrender_value: this.cashSurrenderValue && parseFloat(this.cashSurrenderValue),
          credit_limit: this.creditLimit && parseFloat(this.creditLimit),
          currency_code: this.currencyCode,
          death_benefit: this.deathBenefit,
          interest_rate: this.interestRate && parseFloat(this.interestRate),
          is_closed: this.isClosed,
          is_hidden: this.isHidden,
          loan_amount: this.loanAmount && parseFloat(this.loanAmount),
          metadata: this.metadata && JSON.stringify(this.metadata),
          nickname: this.nickname,
          original_balance: this.originalBalance && parseFloat(this.originalBalance),
        },
      },
    });

    $.export("$summary", `Successfully created a new account with Id: ${response.account.guid}`);
    return response;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
MX TechnologiesmxTechnologiesappThis component uses the MX Technologies app.
User IDuserIdstringSelect a value from the drop down menu.
Account TypeaccountTypestringSelect a value from the drop down menu:{ "label": "ANY", "value": "ANY" }{ "label": "CHECKING", "value": "CHECKING" }{ "label": "SAVINGS - MONEY_MARKET", "value": "MONEY_MARKET" }{ "label": "SAVINGS - CERTIFICATE_OF_DEPOSIT", "value": "CERTIFICATE_OF_DEPOSIT" }{ "label": "LOAN - AUTO", "value": "AUTO" }{ "label": "LOAN - STUDENT", "value": "STUDENT" }{ "label": "LOAN - SMALL_BUSINESS", "value": "SMALL_BUSINESS" }{ "label": "LOAN - PERSONAL", "value": "PERSONAL" }{ "label": "LOAN - PERSONAL_WITH_COLLATERAL", "value": "PERSONAL_WITH_COLLATERAL" }{ "label": "LOAN - HOME_EQUITY", "value": "HOME_EQUITY" }{ "label": "LOAN - BOAT", "value": "BOAT" }{ "label": "LOAN - POWERSPORTS", "value": "POWERSPORTS" }{ "label": "LOAN - RV", "value": "RV" }{ "label": "LOAN - HELOC", "value": "HELOC" }{ "label": "LOAN - CREDIT_CARD", "value": "CREDIT_CARD" }{ "label": "INVESTMENT - PLAN_401_K", "value": "PLAN_401_K" }{ "label": "INVESTMENT - PLAN_403_B", "value": "PLAN_403_B" }{ "label": "INVESTMENT - PLAN_529", "value": "PLAN_529" }{ "label": "INVESTMENT - IRA", "value": "IRA" }{ "label": "INVESTMENT - ROLLOVER_IRA", "value": "ROLLOVER_IRA" }{ "label": "INVESTMENT - ROTH_IRA", "value": "ROTH_IRA" }{ "label": "INVESTMENT - TAXABLE", "value": "TAXABLE" }{ "label": "INVESTMENT - NON_TAXABLE", "value": "NON_TAXABLE" }{ "label": "INVESTMENT - BROKERAGE", "value": "BROKERAGE" }{ "label": "INVESTMENT - TRUST", "value": "TRUST" }{ "label": "INVESTMENT - UNIFORM_GIFTS_TO_MINORS_ACT", "value": "UNIFORM_GIFTS_TO_MINORS_ACT" }{ "label": "INVESTMENT - PLAN_457", "value": "PLAN_457" }{ "label": "INVESTMENT - PENSION", "value": "PENSION" }{ "label": "INVESTMENT - EMPLOYEE_STOCK_OWNERSHIP_PLAN", "value": "EMPLOYEE_STOCK_OWNERSHIP_PLAN" }{ "label": "INVESTMENT - SIMPLIFIED_EMPLOYEE_PENSION", "value": "SIMPLIFIED_EMPLOYEE_PENSION" }{ "label": "INVESTMENT - SIMPLE_IRA", "value": "SIMPLE_IRA" }{ "label": "INVESTMENT - PLAN_ROTH_401_K", "value": "PLAN_ROTH_401_K" }{ "label": "INVESTMENT - FIXED_ANNUITY", "value": "FIXED_ANNUITY" }{ "label": "INVESTMENT - VARIABLE_ANNUITY", "value": "VARIABLE_ANNUITY" }{ "label": "INVESTMENT - HSA", "value": "HSA" }{ "label": "INVESTMENT - TAX_FREE_SAVINGS_ACCOUNT", "value": "TAX_FREE_SAVINGS_ACCOUNT" }{ "label": "INVESTMENT - INDIVIDUAL", "value": "INDIVIDUAL" }{ "label": "INVESTMENT - REGISTERED_RETIREMENT_INCOME_FUND", "value": "REGISTERED_RETIREMENT_INCOME_FUND" }{ "label": "INVESTMENT - CASH_MANAGEMENT_ACCOUNT", "value": "CASH_MANAGEMENT_ACCOUNT" }{ "label": "INVESTMENT - EMPLOYEE_STOCK_PURCHASE_PLAN", "value": "EMPLOYEE_STOCK_PURCHASE_PLAN" }{ "label": "INVESTMENT - REGISTERED_EDUCATION_SAVINGS_PLAN", "value": "REGISTERED_EDUCATION_SAVINGS_PLAN" }{ "label": "INVESTMENT - PROFIT_SHARING_PLAN", "value": "PROFIT_SHARING_PLAN" }{ "label": "INVESTMENT - UNIFORM_TRANSFER_TO_MINORS_ACT", "value": "UNIFORM_TRANSFER_TO_MINORS_ACT" }{ "label": "INVESTMENT - PLAN_401_A", "value": "PLAN_401_A" }{ "label": "INVESTMENT - SARSEP_IRA", "value": "SARSEP_IRA" }{ "label": "INVESTMENT - FIXED_ANNUITY_TRADITIONAL_IRA", "value": "FIXED_ANNUITY_TRADITIONAL_IRA" }{ "label": "INVESTMENT - VARIABLE_ANNUITY_TRADITIONAL_IRA", "value": "VARIABLE_ANNUITY_TRADITIONAL_IRA" }{ "label": "INVESTMENT - SEPP_IRA", "value": "SEPP_IRA" }{ "label": "INVESTMENT - INHERITED_TRADITIONAL_IRA", "value": "INHERITED_TRADITIONAL_IRA" }{ "label": "INVESTMENT - FIXED_ANNUITY_ROTH_IRA", "value": "FIXED_ANNUITY_ROTH_IRA" }{ "label": "INVESTMENT - VARIABLE_ANNUITY_ROTH_IRA", "value": "VARIABLE_ANNUITY_ROTH_IRA" }{ "label": "INVESTMENT - INHERITED_ROTH_IRA", "value": "INHERITED_ROTH_IRA" }{ "label": "INVESTMENT - COVERDELL", "value": "COVERDELL" }{ "label": "INVESTMENT - ADVISORY_ACCOUNT", "value": "ADVISORY_ACCOUNT" }{ "label": "INVESTMENT - BROKERAGE_MARGIN", "value": "BROKERAGE_MARGIN" }{ "label": "INVESTMENT - CHARITABLE_GIFT_ACCOUNT", "value": "CHARITABLE_GIFT_ACCOUNT" }{ "label": "INVESTMENT - CHURCH_ACCOUNT", "value": "CHURCH_ACCOUNT" }{ "label": "INVESTMENT - CONSERVATORSHIP", "value": "CONSERVATORSHIP" }{ "label": "INVESTMENT - CUSTODIAL", "value": "CUSTODIAL" }{ "label": "INVESTMENT - DEFINED_BENEFIT_PLAN", "value": "DEFINED_BENEFIT_PLAN" }{ "label": "INVESTMENT - DEFINED_CONTRIBUTION_PLAN", "value": "DEFINED_CONTRIBUTION_PLAN" }{ "label": "INVESTMENT - EDUCATIONAL", "value": "EDUCATIONAL" }{ "label": "INVESTMENT - ESTATE", "value": "ESTATE" }{ "label": "INVESTMENT - EXECUTOR", "value": "EXECUTOR" }{ "label": "INVESTMENT - GROUP_RETIREMENT_SAVINGS_PLAN", "value": "GROUP_RETIREMENT_SAVINGS_PLAN" }{ "label": "INVESTMENT - GUARANTEED_INVESTMENT_CERTIFICATE", "value": "GUARANTEED_INVESTMENT_CERTIFICATE" }{ "label": "INVESTMENT - HRA", "value": "HRA" }{ "label": "INVESTMENT - INDEXED_ANNUITY", "value": "INDEXED_ANNUITY" }{ "label": "INVESTMENT - INVESTMENT_CLUB", "value": "INVESTMENT_CLUB" }{ "label": "INVESTMENT - IRREVOCABLE_TRUST", "value": "IRREVOCABLE_TRUST" }{ "label": "INVESTMENT - JOINT_TENANTS_BY_ENTIRITY", "value": "JOINT_TENANTS_BY_ENTIRITY" }{ "label": "INVESTMENT - JOINT_TENANTS_COMMUNITY_PROPERTY", "value": "JOINT_TENANTS_COMMUNITY_PROPERTY" }{ "label": "INVESTMENT - JOINT_TENANTS_IN_COMMON", "value": "JOINT_TENANTS_IN_COMMON" }{ "label": "INVESTMENT - JOINT_TENANTS_WITH_RIGHTS_OF_SURVIVORSHIP", "value": "JOINT_TENANTS_WITH_RIGHTS_OF_SURVIVORSHIP" }{ "label": "INVESTMENT - KEOUGH_PLAN", "value": "KEOUGH_PLAN" }{ "label": "INVESTMENT - LIFE_INCOME_FUND", "value": "LIFE_INCOME_FUND" }{ "label": "INVESTMENT - LIVING_TRUST", "value": "LIVING_TRUST" }{ "label": "INVESTMENT - LOCKED_IN_RETIREMENT_ACCOUNT", "value": "LOCKED_IN_RETIREMENT_ACCOUNT" }{ "label": "INVESTMENT - LOCKED_IN_RETIREMENT_INVESTMENT_FUND", "value": "LOCKED_IN_RETIREMENT_INVESTMENT_FUND" }{ "label": "INVESTMENT - LOCKED_IN_RETIREMENT_SAVINGS_ACCOUNT", "value": "LOCKED_IN_RETIREMENT_SAVINGS_ACCOUNT" }{ "label": "INVESTMENT - MONEY_PURCHASE_PLAN", "value": "MONEY_PURCHASE_PLAN" }{ "label": "INVESTMENT - PARTNERSHIP", "value": "PARTNERSHIP" }{ "label": "INVESTMENT - PLAN_409_A", "value": "PLAN_409_A" }{ "label": "INVESTMENT - PLAN_ROTH_403_B", "value": "PLAN_ROTH_403_B" }{ "label": "INVESTMENT - REGISTERED_DISABILITY_SAVINGS_PLAN", "value": "REGISTERED_DISABILITY_SAVINGS_PLAN" }{ "label": "INVESTMENT - REGISTERED_LOCKED_IN_SAVINGS_PLAN", "value": "REGISTERED_LOCKED_IN_SAVINGS_PLAN" }{ "label": "INVESTMENT - REGISTERED_PENSION_PLAN", "value": "REGISTERED_PENSION_PLAN" }{ "label": "INVESTMENT - REGISTERED_RETIREMENT_SAVINGS_PLAN", "value": "REGISTERED_RETIREMENT_SAVINGS_PLAN" }{ "label": "INVESTMENT - REVOCABLE_TRUST", "value": "REVOCABLE_TRUST" }{ "label": "INVESTMENT - ROTH_CONVERSION", "value": "ROTH_CONVERSION" }{ "label": "INVESTMENT - SOLE_PROPRIETORSHIP", "value": "SOLE_PROPRIETORSHIP" }{ "label": "INVESTMENT - SPOUSAL_IRA", "value": "SPOUSAL_IRA" }{ "label": "INVESTMENT - SPOUSAL_ROTH_IRA", "value": "SPOUSAL_ROTH_IRA" }{ "label": "INVESTMENT - TESTAMENTARY_TRUST", "value": "TESTAMENTARY_TRUST" }{ "label": "INVESTMENT - THRIFT_SAVINGS_PLAN", "value": "THRIFT_SAVINGS_PLAN" }{ "label": "INVESTMENT - INHERITED_ANNUITY", "value": "INHERITED_ANNUITY" }{ "label": "INVESTMENT - CORPORATE_ACCOUNT", "value": "CORPORATE_ACCOUNT" }{ "label": "INVESTMENT - LIMITED_LIABILITY_ACCOUNT", "value": "LIMITED_LIABILITY_ACCOUNT" }{ "label": "INVESTMENT - LINE_OF_CREDIT", "value": "LINE_OF_CREDIT" }{ "label": "INVESTMENT - MORTGAGE", "value": "MORTGAGE" }{ "label": "INVESTMENT - PROPERTY", "value": "PROPERTY" }{ "label": "INVESTMENT - CASH", "value": "CASH" }{ "label": "INSURANCE - VEHICLE_INSURANCE", "value": "VEHICLE_INSURANCE" }{ "label": "INSURANCE - DISABILITY", "value": "DISABILITY" }{ "label": "INSURANCE - HEALTH", "value": "HEALTH" }{ "label": "INSURANCE - LONG_TERM_CARE", "value": "LONG_TERM_CARE" }{ "label": "INSURANCE - PROPERTY_AND_CASUALTY", "value": "PROPERTY_AND_CASUALTY" }{ "label": "INSURANCE - UNIVERSAL_LIFE", "value": "UNIVERSAL_LIFE" }{ "label": "INSURANCE - TERM_LIFE", "value": "TERM_LIFE" }{ "label": "INSURANCE - WHOLE_LIFE", "value": "WHOLE_LIFE" }{ "label": "INSURANCE - ACCIDENTAL_DEATH_AND_DISMEMBERMENT", "value": "ACCIDENTAL_DEATH_AND_DISMEMBERMENT" }{ "label": "INSURANCE - VARIABLE_UNIVERSAL_LIFE", "value": "VARIABLE_UNIVERSAL_LIFE" }{ "label": "INSURANCE - PREPAID", "value": "PREPAID" }{ "label": "INSURANCE - CHECKING_LINE_OF_CREDIT", "value": "CHECKING_LINE_OF_CREDIT" }{ "label": "INSURANCE - DIGITAL_WALLET", "value": "DIGITAL_WALLET" }
Namenamestring

The human-readable name for the account.

APRaprstring

The annual percentage rate associated with the account.

APYapystring

The annual percentage yield associated with the account.

Available BalanceavailableBalancestring

The balance that is available for use in asset accounts like checking and savings. PENDING transactions are typically taken into account with the available balance, but this may not always be the case. available_balance will usually be a positive value for all account types, determined in the same way as the balance field.

Balancebalancestring

The current balance of the account. PENDING transactions are typically not taken into account with the current balance, but this may not always be the case. This is the value used for the account balance displayed in MX UIs. The balance will usually be a positive value for all account types. Asset-type accounts (CHECKING, SAVINGS, INVESTMENT) may have a negative balance if they are in overdraft. Debt-type accounts (CREDIT_CARD, LOAN, LINE_OF_CREDIT, MORTGAGE) may have a negative balance if they are overpaid.

Cash Surrender ValuecashSurrenderValuestring

The sum of money paid to the policyholder or annuity holder in the event the policy is voluntarily terminated before it matures, or the insured event occurs.

Credit LimitcreditLimitstring

The credit limit associated with the account.

Currency CodecurrencyCodestring

The three-character ISO 4217 currency code.

Death BenefitdeathBenefitinteger

The amount paid to the beneficiary of the account upon death of the account owner.

Interest RateinterestRatestring

The interest rate associated with the account.

Is ClosedisClosedboolean

This indicates whether an account has been closed.

Is HiddenisHiddenboolean

This indicates whether the account is hidden.

Loan AmountloanAmountstring

The amount of the loan associated with the account.

Metadatametadataobject

Additional information a partner can store on the account.

Nicknamenicknamestring

An alternate name for the account.

Original BalanceoriginalBalancestring

The original balance associated with the account.

Action Authentication

MX Technologies uses API keys for authentication. When you connect your MX Technologies account, Pipedream securely stores the keys so you can easily authenticate to MX Technologies APIs in both code and no-code steps.

Sign in and copy your API Key and Client ID directly from your dashboard.

About MX Technologies

MX is a fintech company that offers open banking, bank APIs, mobile banking, and more via modern connectivity and data enhancement.

More Ways to Connect MX Technologies + MySQL

Create Account with MX Technologies API on New or Updated Row from MySQL API
MySQL + MX Technologies
 
Try it
Create Account with MX Technologies API on New Row (Custom Query) from MySQL API
MySQL + MX Technologies
 
Try it
Create Account with MX Technologies API on New Row from MySQL API
MySQL + MX Technologies
 
Try it
Create Account with MX Technologies API on New Table from MySQL API
MySQL + MX Technologies
 
Try it
Create User with MX Technologies API on New Column from MySQL API
MySQL + MX Technologies
 
Try it
New Column from the MySQL API

Emit new event when you add a new column to a table. See the docs here

 
Try it
New or Updated Row from the MySQL API

Emit new event when you add or modify a new row in a table. See the docs here

 
Try it
New Row from the MySQL API

Emit new event when you add a new row to a table. See the docs here

 
Try it
New Row (Custom Query) from the MySQL API

Emit new event when new rows are returned from a custom query. See the docs here

 
Try it
New Table from the MySQL API

Emit new event when a new table is added to a database. See the docs here

 
Try it
Create Row with the MySQL API

Adds a new row. See the docs here

 
Try it
Delete Row with the MySQL API

Delete an existing row. See the docs here

 
Try it
Execute Query with the MySQL API

Find row(s) via a custom query. See the docs here

 
Try it
Execute Raw Query with the MySQL API

Find row(s) via a custom raw query. See the documentation

 
Try it
Execute Stored Procedure with the MySQL API

Execute Stored Procedure. See the docs here

 
Try it

Explore Other Apps

1
-
24
of
2,000+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Premium
Salesforce (REST API)
Salesforce (REST API)
Web services API for interacting with Salesforce
Premium
HubSpot
HubSpot
HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Premium
Zoho CRM
Zoho CRM
Zoho CRM is an online Sales CRM software that manages your sales, marketing, and support in one CRM platform.
Premium
Stripe
Stripe
Stripe powers online and in-person payment processing and financial solutions for businesses of all sizes.
Shopify Developer App
Shopify Developer App
Shopify is a user-friendly e-commerce platform that helps small businesses build an online store and sell online through one streamlined dashboard.
Premium
WooCommerce
WooCommerce
WooCommerce is the open-source ecommerce platform for WordPress.
Premium
Snowflake
Snowflake
A data warehouse built for the cloud
Premium
MongoDB
MongoDB
MongoDB is an open source NoSQL database management program.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.