Redirects
Portal supports redirect-based integration where users are redirected from your application to complete escrow actions, then returned to your application upon completion.
How It Works
Implementation
Request Link with Callback
const response = await requestLink({
action: 'REGISTER',
payload: {
email: '[email protected]',
type: 'individual',
callbackUrl: 'https://yourapp.com/return-page'
}
});
// Redirect user to Portafino portal
window.location.href = response.redirectUrl;Handle Return
Key Points
Last updated