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:
- Unified Product Ordering
- Single Account Select
How To
To use this feature:
- Set the
use_casesrequest parameter. For details, see Member Use Cases. - Set the
additional_product_optionrequest parameter to one of the accepted values:transactions: AddsPFMto the member'suse_casesand aggregates Account Aggregation data.account_verification: AddsMONEY_MOVEMENTto the member'suse_casesand aggregates Instant Account Verification data.
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_filteris set totrueto show only PFM members in the Connections Widget.additional_product_optionis set toaccount_verificationto 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}