Skip to main content

Direct Deposit

Enable users to set up or switch their direct deposits, increasing direct deposits to your institution.

Percentage allocation is available as a toggled feature if your payment provider supports it. This can be turned on for your users through the direct deposit provider.

You can access the direct deposit integration in one of three ways: Financial Insights, Mobile, or the Actionable Integration Widget.

Financial Insights

Through Financial Insights, users may see one of two insights prompting them to take action:

info

The account_number and routing_number are required for this use case. Provide them using the MDX Real Time API using the Create or Update Account Number endpoint or the MDX On Demand v5 API.

Mobile

If you're using our mobile app, users will see some other entry points encouraging direct deposit setup or switching.

Actionable Integration Widget

You can also integrate using our Actionable Integration Widget.

Actionable Integration Widget Overview

The Actionable Integration Widget is a standalone widget designed to unlock functionality without requiring you to have another product. You can call directly to our SDK integrations and display them wherever you need to.

Recommended Dimensions: set to 100% of the available container.

Supported Languages: English, Spanish, and French.

To integrate, request a Widget URL (Platform API or SSO API) and:

  • Set the widget_type to actionable_integration_widget
  • Include "deep_link_params": { "launch_integration": "direct-deposit" }.

Platform API Example

Language:shell

_12
curl -i -X POST https://int-api.mx.com/users/{USR-guid}/widget_urls \
_12
-H 'Accept: application/vnd.mx.api.v1+json' \
_12
-u 'client_id:api_key' \
_12
-H 'Content-type: application/json' \
_12
-d '{
_12
"widget_url": {
_12
"widget_type": "actionable_integration_widget",
_12
"deep_link_params": {
_12
"launch_integration": "direct-deposit"
_12
}
_12
}
_12
}'