Connected Accounts
Verify connected account user
Confirms the user assertion and activates the connected account after the user completes third-party OAuth. Called by the B2B app server with auth_request_id and identifier. Validates that the asserted identifier matches the one stored on the auth request and promotes pending tokens to live.
post/api/v1/connected_accounts/user/verify
Request body
Example request
{
"auth_request_id": "QVNDSUFyY2hhYml0dGVyXzE2ODQ5NzIwNzI0NTY=",
"identifier": "user@example.com"
}Response
Verification successful; connected account is now ACTIVE
Example response
{
"post_user_verify_redirect_url": "https://env1.example.com/connect/success"
}