Compliance
A Connection node calls Inscribe 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
/api/v2/customersEverything in Inscribe hangs off a customer, so this comes first — the documents and the fraud verdict attach to the id it returns.
/api/v2/customers/$data.inscribe_customer_id/documents/$data.inscribe_document_idThe call a decision actually branches on. trust_score runs 0 to 100 and risk_assessment.insights lists the individual fraud signals with a rationale — which is what an adverse action file needs, rather than the bare score.
/api/v2/customers/$data.inscribe_customer_id/documentsEvery document on the customer with its state and scores.
/api/v2/customers/$data.inscribe_customer_idThe customer-level view: the risk assessment rolled up across every document, plus the canonical profile Inscribe derived from them.
/api/v2/customersCustomers on the account, newest first. Cheapest way to confirm a token works before wiring anything else.
Provider documentation: https://docs.inscribe.ai/reference/getting-started
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 Inscribe 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.