Banking
A Connection node calls Truv mid-decision with the credentials your own contract issued. Whatever comes back is data the rest of the flow can read, branch on, and keep in the decision's trace.
What a flow can call
/v1/users/$data.truv_user_id/tokens/First step. Mints the token that initialises TruvBridge for one user, who then picks their employer or payroll provider and logs in there.
/v1/link-access-tokens/Second step. Bridge hands the front end a public_token; this trades it for the access_token and, more importantly, the link_id that every report call below is keyed by.
/v1/links/$data.truv_link_id/income-employment-reportsThe verification of income and employment for a completed link — pay rate, frequency and employment status straight from the payroll record.
/v1/links/$data.truv_link_id/employment-reportsEmployer, title, start date and status without the income detail.
/v1/links/$data.truv_link_id/statementsIndividual pay statements with gross, net and the earnings and deductions breakdown.
Provider documentation: https://docs.truv.com/api-reference
Where it sits in the decision
The call runs where the policy needs it — after the cheap checks that might make it unnecessary, before the rules that depend on it. Calls that do not depend on each other run together rather than in sequence.
Because it is part of the run, the response is part of the record. When someone asks why an applicant was declined months later, what Truv returned at the time is in the trace, not re-fetched from a service whose answer has since changed.
Ready when you are
Build the flow in Sandbox, connect your account, and watch the decision pull what it needs before it answers.