← Slack + MX Technologies integrations

Create Account with MX Technologies API on New Message In Channels (Instant) from Slack API

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

Trigger workflow on
New Message In Channels (Instant) from the Slack 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 Slack 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 Message In Channels (Instant) trigger
    1. Connect your Slack account
    2. Optional- Select one or more Channels
    3. Configure slackApphook
    4. Optional- Configure Resolve Names
    5. Optional- Configure Ignore Bots
    6. Optional- Configure Ignore replies in threads
  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 a new message is posted to one or more channels
Version:1.0.17
Key:slack-new-message-in-channels

Slack Overview

The Pipedream Slack app enables you to build event-driven workflows that interact with the Slack API. Once you authorize the Pipedream app's access to your workspace, you can use Pipedream workflows to perform common Slack actions or write your own code against the Slack API.

The Pipedream Slack app is not a typical app. You don't interact with it directly as a bot, and it doesn't add custom functionality to your workspace out of the box. It makes it easier to automate anything you'd typically use the Slack API for, using Pipedream workflows.

  • Automate posting updates to your team channels
  • Create a bot to answer common questions
  • Integrate with your existing tools and services
  • And much more!

Trigger Code

import common from "../common/base.mjs";
import constants from "../common/constants.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  ...common,
  key: "slack-new-message-in-channels",
  name: "New Message In Channels (Instant)",
  version: "1.0.17",
  description: "Emit new event when a new message is posted to one or more channels",
  type: "source",
  dedupe: "unique",
  props: {
    ...common.props,
    conversations: {
      propDefinition: [
        common.props.slack,
        "conversation",
      ],
      type: "string[]",
      label: "Channels",
      description: "Select one or more channels to monitor for new messages.",
      optional: true,
    },
    // eslint-disable-next-line pipedream/props-description,pipedream/props-label
    slackApphook: {
      type: "$.interface.apphook",
      appProp: "slack",
      async eventNames() {
        return this.conversations || [
          "message",
        ];
      },
    },
    resolveNames: {
      propDefinition: [
        common.props.slack,
        "resolveNames",
      ],
    },
    ignoreBot: {
      propDefinition: [
        common.props.slack,
        "ignoreBot",
      ],
    },
    ignoreThreads: {
      type: "boolean",
      label: "Ignore replies in threads",
      description: "Ignore replies to messages in threads",
      optional: true,
    },
  },
  methods: {
    ...common.methods,
    getSummary() {
      return "New message in channel";
    },
    async processEvent(event) {
      if (event.type !== "message") {
        console.log(`Ignoring event with unexpected type "${event.type}"`);
        return;
      }
      if (event.subtype && !constants.ALLOWED_MESSAGE_IN_CHANNEL_SUBTYPES.includes(event.subtype)) {
        // This source is designed to just emit an event for each new message received.
        // Due to inconsistencies with the shape of message_changed and message_deleted
        // events, we are ignoring them for now. If you want to handle these types of
        // events, feel free to change this code!!
        console.log("Ignoring message with subtype.");
        return;
      }
      if ((this.ignoreBot) && (event.subtype == "bot_message" || event.bot_id)) {
        return;
      }
      console.log(event.s);
      // There is no thread message type only the thread_ts field
      // indicates if the message is part of a thread in the event.
      if (this.ignoreThreads && event.thread_ts) {
        console.log("Ignoring reply in thread");
        return;
      }
      if (this.resolveNames) {
        if (event.user) {
          event.user_id = event.user;
          event.user = await this.getUserName(event.user);
        } else if (event.bot_id) {
          event.bot = await this.getBotName(event.bot_id);
        }
        event.channel_id = event.channel;
        event.channel = await this.getConversationName(event.channel);
        if (event.team) {
          event.team_id = event.team;
          event.team = await this.getTeamName(event.team);
        }
      }
      return event;
    },
  },
  sampleEmit,
};

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
SlackslackappThis component uses the Slack app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
Channelsconversationsstring[]Select a value from the drop down menu.
slackApphook$.interface.apphook
Resolve NamesresolveNamesboolean

Instead of returning channel, team, and user as IDs, return their human-readable names.

Ignore BotsignoreBotboolean

Ignore messages from bots

Ignore replies in threadsignoreThreadsboolean

Ignore replies to messages in threads

Trigger Authentication

Slack uses OAuth authentication. When you connect your Slack account, Pipedream will open a popup window where you can sign into Slack and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Slack API.

Pipedream requests the following authorization scopes when you connect your account:

bookmarks:writecalls:readcalls:writechannels:historychannels:readchannels:writednd:readdnd:writeemoji:readfiles:readgroups:historygroups:readgroups:writeim:historyim:readim:writelinks:readlinks:writempim:historympim:readmpim:writepins:readpins:writereactions:readreactions:writereminders:readreminders:writeremote_files:readremote_files:sharestars:readstars:writeteam:readusergroups:readusergroups:writeusers:readusers:read.emailusers:writechat:write:botchat:write:usercommandsfiles:write:userusers.profile:writeusers.profile:readsearch:read

About 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.

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

Create Account with MX Technologies API on New Star Added To Message (Instant) from Slack API
Slack + MX Technologies
 
Try it
Create User with MX Technologies API on New Star Added To Message (Instant) from Slack API
Slack + MX Technologies
 
Try it
Create Account with MX Technologies API on New Direct Message (Instant) from Slack API
Slack + MX Technologies
 
Try it
Create Account with MX Technologies API on New Interaction Events from Slack API
Slack + MX Technologies
 
Try it
Create Account with MX Technologies API on New Mention (Instant) from Slack API
Slack + MX Technologies
 
Try it
New Message In Channels (Instant) from the Slack API

Emit new event when a new message is posted to one or more channels

 
Try it
New Channel Created (Instant) from the Slack API

Emit new event when a new channel is created.

 
Try it
New Direct Message (Instant) from the Slack API

Emit new event when a message was posted in a direct message channel

 
Try it
New Interaction Events (Instant) from the Slack API

Emit new events on new Slack interactivity events sourced from Block Kit interactive elements, Slash commands, or Shortcuts.

 
Try it
New Keyword Mention (Instant) from the Slack API

Emit new event when a specific keyword is mentioned in a channel

 
Try it
Reply to a Message Thread with the Slack API

Send a message as a threaded reply. See postMessage or scheduleMessage docs here

 
Try it
Send a Custom Message with the Slack API

Customize advanced setttings and send a message to a channel, group or user. See postMessage or scheduleMessage docs here

 
Try it
Add Emoji Reaction with the Slack API

Add an emoji reaction to a message. See the documentation

 
Try it
Archive Channel with the Slack API

Archive a channel. See the documentation

 
Try it
Create a Channel with the Slack API

Create a new channel. 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.