← Snowflake + MX Technologies integrations

Create Account with MX Technologies API on New Query Results from Snowflake API

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

Trigger workflow on
New Query Results from the Snowflake 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 Snowflake 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 Query Results trigger
    1. Connect your Snowflake account
    2. Configure timer
    3. Configure SQL Query
    4. Optional- Configure Primary key
    5. Optional- Configure Emit individual events
  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:Run a SQL query on a schedule, triggering a workflow for each row of results
Version:0.1.13
Key:snowflake-query-results

Snowflake Overview

Snowflake offers a cloud database and related tools to help developers create robust, secure, and scalable data warehouses. See Snowflake's Key Concepts & Architecture.

Getting Started

1. Create a user, role and warehouse in Snowflake

Snowflake recommends you create a new user, role, and warehouse when you integrate a third-party tool like Pipedream. This way, you can control permissions via the user / role, and separate Pipedream compute and costs with the warehouse. You can do this directly in the Snowflake UI.

We recommend you create a read-only account if you only need to query Snowflake. If you need to insert data into Snowflake, add permissions on the appropriate objects after you create your user.

2. Enter those details in Pipedream

Visit https://pipedream.com/accounts. Click the button to Connect an App. Enter the required Snowflake account data.

You'll only need to connect your account once in Pipedream. You can connect this account to multiple workflows to run queries against Snowflake, insert data, and more.

3. Build your first workflow

Visit https://pipedream.com/new to build your first workflow. Pipedream workflows let you connect Snowflake with 1,000+ other apps. You can trigger workflows on Snowflake queries, sending results to Slack, Google Sheets, or any app that exposes an API. Or you can accept data from another app, transform it with Python, Node.js, Go or Bash code, and insert it into Snowflake.

Learn more at Pipedream University.

Trigger Code

import common from "../common.mjs";
import { v4 as uuidv4 } from "uuid";

export default {
  ...common,
  type: "source",
  key: "snowflake-query-results",
  name: "New Query Results",
  // eslint-disable-next-line
  description: "Run a SQL query on a schedule, triggering a workflow for each row of results",
  version: "0.1.13",
  props: {
    ...common.props,
    sqlQuery: {
      type: "string",
      label: "SQL Query",
      description: "Run this query on a schedule, triggering the workflow for each row of results",
    },
    // Ordering props correctly
    timer: common.props.timer,
    dedupeKey: {
      type: "string",
      label: "Primary key",
      description: "The column in your query to use for de-duplication. Duplicate rows won't trigger your workflow",
      optional: true,
    },
    emitIndividualEvents: {
      propDefinition: [
        common.props.snowflake,
        "emitIndividualEvents",
      ],
    },
  },
  methods: {
    ...common.methods,
    generateMeta(data) {
      const {
        row: { [this.dedupeKey]: id = uuidv4() },
        timestamp: ts,
      } = data;
      const summary = `New event (ID: ${id})`;
      return {
        id,
        summary,
        ts,
      };
    },
    generateMetaForCollection(data) {
      const { timestamp: ts } = data;
      const id = uuidv4();
      const summary = `New event (ID: ${id})`;
      return {
        id,
        summary,
        ts,
      };
    },
    getStatement() {
      return {
        sqlText: this.sqlQuery,
      };
    },
  },
};

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
SnowflakesnowflakeappThis component uses the Snowflake app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
timer$.interface.timer

Watch for changes on this schedule

SQL QuerysqlQuerystring

Run this query on a schedule, triggering the workflow for each row of results

Primary keydedupeKeystring

The column in your query to use for de-duplication. Duplicate rows won't trigger your workflow

Emit individual eventsemitIndividualEventsboolean

Defaults to true, triggering workflows on each record in the result set. Set to false to emit records in batch (advanced)

Trigger Authentication

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

Snowflake recommends you create a new user, role, and warehouse when you integrate a third-party tool like Pipedream. This way, you can control permissions via the user / role, and separate Pipedream compute and costs with the warehouse. You can do this directly in the Snowflake UI.

We recommend you create a read-only account if you only need to query Snowflake. If you need to insert data into Snowflake, add permissions on the appropriate objects after you create your user.

About Snowflake

A data warehouse built for the cloud

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 + Snowflake

Create Account with MX Technologies API on New, Updated, or Deleted Warehouse from Snowflake API
Snowflake + MX Technologies
 
Try it
Create Account with MX Technologies API on New Deleted Role from Snowflake API
Snowflake + MX Technologies
 
Try it
Create Account with MX Technologies API on New Deleted User from Snowflake API
Snowflake + MX Technologies
 
Try it
Create Account with MX Technologies API on Failed Task in Schema from Snowflake API
Snowflake + MX Technologies
 
Try it
Create Account with MX Technologies API on New Database from Snowflake API
Snowflake + MX Technologies
 
Try it
New Row from the Snowflake API

Emit new event when a row is added to a table

 
Try it
New Query Results from the Snowflake API

Run a SQL query on a schedule, triggering a workflow for each row of results

 
Try it
Failed Task in Schema from the Snowflake API

Emit new events when a task fails in a database schema

 
Try it
New Database from the Snowflake API

Emit new event when a database is created

 
Try it
New Deleted Role from the Snowflake API

Emit new event when a role is deleted

 
Try it
Insert Multiple Rows with the Snowflake API

Insert multiple rows into a table

 
Try it
Insert Single Row with the Snowflake API

Insert a row into a table

 
Try it
Create Account with the MX Technologies API

Creates a new account for a specific user. See the documentation

 
Try it
Create User with the MX Technologies API

Creates a new user in the MX Technologies platform. See the documentation

 
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.