Skip to main content

Institutions Overview

Institutions represent a financial institution.

A single real-world financial institution may have several institution objects on the MX platform.

For example, the mortgage division of a financial institution might use a separate system than its everyday banking division, which is different from its credit card division.

Only MX can create an institution. Each institution can offer multiple connection methods such as:

  • An email and a password
  • A username and a password
  • OAuth (some institutions don’t support OAuth)

When creating a member, you must also call List Institution Credentials to retrieve the set of required credentials for each institution and request them from the user.

You can Read an Institution to see what products each institution supports and access an institution’s:

  • Logos
  • URLs for things such as forgotten usernames and passwords
  • Instructional text (we use this in our Connect Widget to help give further context on any caveats users may encounter when attempting to connect to the institution)
note

The list of institutions can change at any time.

Caching our Institutions List and Credentials​

You can use the List Institutions endpoint to retrieve a list of all institutions currently available in the MX platform.

To avoid frequent calls that return all supported institutions, we recommend caching the institution list and the required credentials for each institution daily. This ensures you pick up new institutions and any changes to existing ones, such as updated required credentials when MX switches to a new data provider.

We aim to maintain the same institution guid even if we change data providers, but in rare cases, it may change.

Institution Fields

FieldData TypeDescription
client_statusStringThe client-level status of the institution, indicating restrictions on member connections. See Client Status for more details.
codeStringA unique identifier for each institution, defined by MX.
created_atStringDate and time the institution was created, represented in ISO 8601 format with timestamp (e.g. 2015-04-13T12:01:23-00:00).
forgot_password_urlStringThe URL of the institution for helping users recover a forgotten password.
forgot_username_urlStringThe URL of the institution for helping users recover a forgotten username.
guidStringA unique identifier for the institution. Defined by MX.
instructional_textStringText intended to help end users provide the correct credentials when creating a new member. May contain <a></a> tags to link to explanatory material. Partners should render this text when end users are asked for their credentials.
instructional_text_stepsArrayAn array of instructional steps that may contain html elements.
is_disabled_by_clientBooleanThis indicates whether the institution has been disabled by the client.
is_hiddenBooleanIf the institution is available for creating new member connections, this field will be false. Otherwise, this field will be true.
iso_country_codeStringThe ISO country code related to the institution. Can also be used as a query param (array) on the List Institution endpoints to filter the institutions.
medium_logo_urlStringThe URL for a 100px X 100px logo for each institution. A generic logo is returned for institutions that don't have one.
nameStringAn easy-to-read name for an institution, for example, "Chase Bank" or "Wells Fargo Bank."
small_logo_urlStringThe URL for a 50px X 50px logo for each institution. A generic logo is returned for institutions that don't have one.
statusStringThe operational status of the institution. See Institution Status for more details.
supports_account_identificationBooleanThis indicates whether the institution supports account identification.
supports_account_statementBooleanThis indicates whether the institution provides access to account statements.
supports_account_verificationBooleanThis indicates whether the institution supports account verification.
supports_oauthBooleanThis reflects two conditions. This will be true when both:
supports_tax_documentBooleanThis indicates whether the institution supports tax documents.
supports_transaction_historyBooleanIndicates whether extended transaction history is supported. See the Extended Transaction History guide for more info.
trouble_signing_in_urlStringThe URL of the institution for helping users troubleshoot any other sign-in issue.
urlStringThe URL for particular institution's website , e.g., www.chase.com.

Status

The institution object provides two fields that clarify the status of that institution:

  • institution.status represents the global status of the institution across MX.
  • institution.client_status represents the institution status specifically for your client configuration. This allows MX tooling to apply client-level rules without affecting global institution behavior.

Use these fields to:

  • Differentiate between the institution’s overall status and the status for your specific integration.
  • Control which institutions are shown to users based on these status values.
  • Display clearer messages to your users when an institution is unavailable, has known issues, or is otherwise restricted.

Use the following workflow to provide clearer messaging around institution status to end users:

  1. Update your institution-related API integrations to read status and client_status where applicable.
  2. Map each relevant status value to appropriate user-facing messages consistent with your brand and regulatory requirements. If status indicates that an institution is unavailable, you may choose to hide it from search results or show a clear, neutral message explaining that the institution cannot be connected at this time. If client_status indicates that an institution is blocked or restricted for your client, provide a concise, neutral explanation without disclosing internal reasons or sensitive details.

Institution Status

The institution.status field represents the global status of the institution across MX.

StatusBehaviorMessage
OPERATIONALOperations allowedNone
MAINTENANCEAll operations blockedThis institution is temporarily unavailable due to scheduled system maintenance. Access will resume once maintenance is complete. Please try again later.
DEGRADEDOperations allowed (with warning)This institution is experiencing connectivity issues. You can still try to connect, but may need to try again later.
UNAVAILABLEAll operations blockedThis institution is experiencing technical issues that are preventing successful connections. It's unclear when this will be resolved.

Client Status

The institution.client_status field represents the institution's status for your client configuration. This allows MX tooling to apply client-level rules without affecting global institution behavior. When checking if an operation is allowed, client_status is evaluated first, then institution.status. If either field blocks the operation, a 400 Bad Request error is returned with the appropriate message in the error.message field.

Client StatusBlocksMessage
AVAILABLENo restrictionsNone
PREVENT_ALLNew member creation and updates to existing membersThe requested data isn't available through this institution.
PREVENT_NEWNew member creation onlyThis institution is not available for connection.
PREVENT_ALL_AND_DISCONNECTNew member creation and updates to existing membersThis institution is not available for connection.
PREVENT_VERIFICATIONNew member creation when member.data_request.products is set to account_verification and calls to POST /users/{user_identifier}/members/{member_identifier}/verifyThe requested data isn't available through this connection.
PREVENT_BACKGROUND_AGGNo restrictions (for informational purposes)None