10 July 2025 (v2.138)
ReachFive v2.138
introduces a couple of improvements and needed bug fixes.
We also have a new UI SDK release where several enhancements have been made. As always, we made some general improvements and fixed a few items for you.
New audit log for when users are suspended
With this release, we’re introducing a new audit log for when users are suspended or unsuspended from the ReachFive Console. This helps you keep track of user account changes more effectively. It is available for use with Pub/Sub hooks.
For more details, see Audit logs.
{
"total": 1,
"items": [
{
"user_email": "admin@company.com",
"entity_name": "console",
"user_name": "Admin User",
"action_name": "suspension",
"created_at": "2025-07-10T14:21:45.123Z",
"id": "a1b...g7h8i9j0",
"action_data": {
"userId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"suspensionStatus": "temporary",
"suspensionReason": "violatedTermsOfService"
},
"client_id": "Console Admin"
}
]
}
{
"total": 1,
"items": [
{
"user_email": "admin@company.com",
"entity_name": "console",
"user_name": "Admin User",
"action_name": "unsuspension",
"created_at": "2025-07-10T14:22:45.123Z",
"id": "a1b...g7h8i9j0",
"action_data": {
"userId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
},
"client_id": "Console Admin"
}
]
}
CaptchaFox integration
You can now integrate CaptchaFox to enhance security during user authentication, in addition to the already available reCaptcha configuration option. This integration helps prevent automated login attempts and further strengthens account protection.
For more details, see Enable CaptchaFox from the console.

New query parameter for logout
We now support a new query parameter for the logout endpoint: post_logout_redirect_uri
.
This parameter allows you to specify a URL to redirect users to after they log out in the same way our redirect_to
query parameter currently works for the logout endpoint.
For more details, see /logout.
UI SDK release 1.36.0
The latest version of the UI SDK, 1.36.0
, introduces several enhancements:
-
We’ve added support for CaptchaFox including the following parameters:
-
captchaFoxEnabled
: Boolean that specifies whether the CaptchaFox is enabled or not. -
captchaFoxSiteKey
: The CaptchaFox site key that comes from your CaptchaFox setup. -
captchaFoxMode
: Specifies how CaptchaFox is displayed.
-
-
The
onSuccess()
function now takes aSuccessEvent
object which specifies what event triggered the success callback.onSuccess() function detailsCallback function called when the request was successful. Takes a
SuccessEvent
object which specifies what event triggered the success callback.For a full list of event types, user event types.
-
We’ve also made the postal address fields available in showAuth().
-
Additionally, you can allow users to view and update addresses through the showProfileEditor().
General improvements
-
We added translations for several address labels.
-
We updated the library we use to validate phone numbers to the latest version.
-
We removed the
risk_score
scope from our B.connect connector since it is no longer used by the provider.
Fixes
Item | Fixed |
---|---|
ReachFive wasn’t correctly sending a |
✓ |
When merging an SLO user account with a managed profile using a pre-event webhook, |
✓ |
ReachFive Console |
|
The ReachFive Console API was using the incorrect operator |
✓ |
In some limited cases, the display URL (label) in ReachFive Console links was not showing custom domains as defined in client settings. |
✓ |