Skip to main content

Connect Widget Additional Products

Use the additional_product_option parameter to let users add Account Aggregation or Instant Account Verification to a member directly within the Connect or Connections Widget.

note

For the full product documentation, see Connect Widget.

Compatibility

The following features are not compatible with the additional_product_option parameter:

How To

To use this feature:

  1. Set the use_cases request parameter. For details, see Member Use Cases.
  2. Set the additional_product_option request parameter to one of the accepted values:

SSO API Examples

note

For more info, see the SSO API reference.

Example 1 – Connect Widget

Prompt users to also add Account Aggregation to the member.


_10
{
_10
"url": {
_10
"type": "connect_widget",
_10
"mode": "verification",
_10
"use_cases": ["MONEY_MOVEMENT"],
_10
"ui_message_version": 4,
_10
"additional_product_option": "transactions"
_10
}
_10
}

Example 2 – Connect Widget

Prompt users to also add Instant Account Verification to the member.


_10
{
_10
"url": {
_10
"type": "connect_widget",
_10
"mode": "aggregation",
_10
"use_cases": ["PFM"],
_10
"ui_message_version": 4,
_10
"additional_product_option": "account_verification"
_10
}
_10
}

Example 1 – Connections Widget

Prompt users to also add Instant Account Verification to the member.


_10
{
_10
"url": {
_10
"type": "connections_widget",
_10
"use_cases": ["PFM"],
_10
"ui_message_version": 4,
_10
"additional_product_option": "account_verification"
_10
}
_10
}

Example 2 – Connections Widget

Show only PFM members in the Connections Widget and prompt users to add Instant Account Verification to a member:

  • connections_use_case_filter is set to true to show only PFM members in the Connections Widget.
  • additional_product_option is set to account_verification to add Instant Account Verification to the member.

_10
{
_10
"url": {
_10
"type": "connections_widget",
_10
"use_cases": ["PFM"],
_10
"ui_message_version": 4,
_10
"additional_product_option": "account_verification",
_10
"connections_use_case_filter": true
_10
}
_10
}