← LiveKit + MX Technologies integrations

Create Account with MX Technologies API on New Room Event (Instant) from LiveKit API

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

Trigger workflow on
New Room Event (Instant) from the LiveKit 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 1,000,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 LiveKit 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 Room Event (Instant) trigger
    1. Connect your LiveKit account
    2. Select one or more Event Types
    3. Optional- Configure Room Name Filter
  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 for LiveKit room activities via webhook. [See the documentation](https://docs.livekit.io/home/server/webhooks/).
Version:0.0.1
Key:livekit-new-room-event-instant

Trigger Code

import app from "../../livekit.app.mjs";

export default {
  key: "livekit-new-room-event-instant",
  name: "New Room Event (Instant)",
  description: "Emit new event for LiveKit room activities via webhook. [See the documentation](https://docs.livekit.io/home/server/webhooks/).",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  props: {
    app,
    http: "$.interface.http",
    eventTypes: {
      type: "string[]",
      label: "Event Types",
      description: "Select which types of events to monitor",
      options: [
        {
          label: "Room Started (e.g., call initiated)",
          value: "room_started",
        },
        {
          label: "Room Finished (e.g., call ended)",
          value: "room_finished",
        },
        {
          label: "Participant Joined (e.g., call answered)",
          value: "participant_joined",
        },
        {
          label: "Participant Left (e.g., call ended)",
          value: "participant_left",
        },
        {
          label: "Track Published (e.g., video track published)",
          value: "track_published",
        },
        {
          label: "Track Unpublished (e.g., video track unpublished)",
          value: "track_unpublished",
        },
        {
          label: "Egress Started (e.g., egress started for recording or streaming)",
          value: "egress_started",
        },
        {
          label: "Egress Updated (e.g., egress updated for recording or streaming)",
          value: "egress_updated",
        },
        {
          label: "Egress Ended (e.g., egress ended for recording or streaming)",
          value: "egress_ended",
        },
        {
          label: "Ingress Started (e.g., ingress started for recording or streaming)",
          value: "ingress_started",
        },
        {
          label: "Ingress Ended (e.g., ingress ended for recording or streaming)",
          value: "ingress_ended",
        },
      ],
    },
    roomNameFilter: {
      type: "string",
      label: "Room Name Filter",
      description: "Only emit events for this specific room. Leave empty to monitor all rooms.",
      optional: true,
    },
  },
  methods: {
    shouldEmitEvent({
      event, room,
    }) {
      // Check if event type is in our filter
      if (!this.eventTypes.includes(event)) {
        return false;
      }

      // Filter by room if specified, with case-insensitive comparison
      if (this.roomNameFilter
        && room?.name?.toLowerCase() !== this.roomNameFilter.toLowerCase()) {
        return false;
      }

      return true;
    },
    generateSummary(event) {
      const room = event.room?.name || "Unknown room";

      switch (event.event) {
      case "room_started":
        return `Room started: ${room}`;
      case "room_finished":
        return `Room finished: ${room}`;
      case "participant_joined": {
        const joinedParticipant = event.participant?.identity || "Unknown";
        return `${joinedParticipant} joined room: ${room}`;
      }
      case "participant_left": {
        const leftParticipant = event.participant?.identity || "Unknown";
        return `${leftParticipant} left room: ${room}`;
      }
      case "track_published": {
        const publishedBy = event.participant?.identity || "Unknown";
        const trackType = event.track?.type || "track";
        return `${publishedBy} published ${trackType} in room: ${room}`;
      }
      case "track_unpublished": {
        const unpublishedBy = event.participant?.identity || "Unknown";
        const unpublishedTrackType = event.track?.type || "track";
        return `${unpublishedBy} unpublished ${unpublishedTrackType} in room: ${room}`;
      }
      case "egress_started": {
        const egressId = event.egressInfo?.egressId || "Unknown";
        return `Egress started (${egressId}) in room: ${room}`;
      }
      case "egress_updated": {
        const egressId = event.egressInfo?.egressId || "Unknown";
        return `Egress updated (${egressId}) in room: ${room}`;
      }
      case "egress_ended": {
        const egressId = event.egressInfo?.egressId || "Unknown";
        return `Egress ended (${egressId}) in room: ${room}`;
      }
      case "ingress_started": {
        const ingressId = event.ingressInfo?.ingressId || "Unknown";
        return `Ingress started (${ingressId}) in room: ${room}`;
      }
      case "ingress_ended": {
        const ingressId = event.ingressInfo?.ingressId || "Unknown";
        return `Ingress ended (${ingressId}) in room: ${room}`;
      }
      default:
        return `${event.event} in room: ${room}`;
      }
    },
  },
  async run({
    headers, bodyRaw,
  }) {
    if (!headers.authorization) {
      throw new Error("Missing Authorization header");
    }

    const webhookEvent = await this.app.verifyWebhook(bodyRaw, headers.authorization);

    if (this.shouldEmitEvent(webhookEvent)) {
      this.$emit(webhookEvent, {
        id: webhookEvent.id,
        summary: this.generateSummary(webhookEvent),
        ts: parseInt(webhookEvent.createdAt) * 1000,
      });
    }
  },
};

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
LiveKitappappThis component uses the LiveKit app.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
Event TypeseventTypesstring[]Select a value from the drop down menu:{ "label": "Room Started (e.g., call initiated)", "value": "room_started" }{ "label": "Room Finished (e.g., call ended)", "value": "room_finished" }{ "label": "Participant Joined (e.g., call answered)", "value": "participant_joined" }{ "label": "Participant Left (e.g., call ended)", "value": "participant_left" }{ "label": "Track Published (e.g., video track published)", "value": "track_published" }{ "label": "Track Unpublished (e.g., video track unpublished)", "value": "track_unpublished" }{ "label": "Egress Started (e.g., egress started for recording or streaming)", "value": "egress_started" }{ "label": "Egress Updated (e.g., egress updated for recording or streaming)", "value": "egress_updated" }{ "label": "Egress Ended (e.g., egress ended for recording or streaming)", "value": "egress_ended" }{ "label": "Ingress Started (e.g., ingress started for recording or streaming)", "value": "ingress_started" }{ "label": "Ingress Ended (e.g., ingress ended for recording or streaming)", "value": "ingress_ended" }
Room Name FilterroomNameFilterstring

Only emit events for this specific room. Leave empty to monitor all rooms.

Trigger Authentication

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

To retrieve your API Key, Secret Key and Project URL,

  • Navigate to your LiveKit account and sign in
  • Go to “Settings” > "Project" for Project URL
  • Go to “Settings” > "Keys" for API Key and Secret Key

About LiveKit

Build realtime AI. Instantly transport audio + video between LLMs and your users.

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

Create Ingress From URL with LiveKit API on New User Created from MX Technologies API
MX Technologies + LiveKit
 
Try it
Create Room with LiveKit API on New User Created from MX Technologies API
MX Technologies + LiveKit
 
Try it
Delete Room with LiveKit API on New User Created from MX Technologies API
MX Technologies + LiveKit
 
Try it
List Rooms with LiveKit API on New User Created from MX Technologies API
MX Technologies + LiveKit
 
Try it
Generate Access Token with LiveKit API on New User Created from MX Technologies API
MX Technologies + LiveKit
 
Try it
New Room Event (Instant) from the LiveKit API

Emit new event for LiveKit room activities via webhook. See the documentation

 
Try it
New User Created from the MX Technologies API

Emit new event for each new user created.

 
Try it
Create Ingress From URL with the LiveKit API

Create a new ingress from url in LiveKit. See the documentation

 
Try it
Create Room with the LiveKit API

Create a new room in LiveKit. See the documentation

 
Try it
Delete Room with the LiveKit API

Delete a room in LiveKit. See the documentation

 
Try it
Generate Access Token with the LiveKit API

Generate an access token for a participant to join a LiveKit room. See the documentation

 
Try it
List Rooms with the LiveKit API

List all rooms with LiveKit. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
2,800+
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.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
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.
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.
Anthropic (Claude)
Anthropic (Claude)
AI research and products that put safety at the frontier. Introducing Claude, a next-generation AI assistant for your tasks, no matter the scale.
Google Sheets
Google Sheets
Use Google Sheets to create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device.
Telegram
Telegram
Telegram, is a cloud-based, cross-platform, encrypted instant messaging (IM) service.
Google Drive
Google Drive
Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.
Google Calendar
Google Calendar
With Google Calendar, you can quickly schedule meetings and events and get reminders about upcoming activities, so you always know what’s next.
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
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
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.