AltScore
Nodes

Read Authorization

Read Authorization checks whether a customer has signed a specific authorization and routes accordingly. No message goes to the customer — it evaluates silently and branches TRUE or FALSE.

What It Checks

The node looks up the borrower's authorizations (see Authorizations API) and applies conditions in sequence. All must pass for TRUE:

  1. Does an authorization with the specified key exist?
  2. If check signed is enabled, does it have a signature?
  3. If an age limit is set, is it recent enough?

Any check fails, FALSE.

When to Use It

Before requesting consent. A returning customer shouldn't re-sign terms they agreed to last week. Check first, skip the consent flow if already signed.

Compliance gates. Ensure required authorizations exist before proceeding to sensitive operations.

Re-authorization flows. With age limits, check whether old signatures need renewal.

Configuration

OptionDescription
Authorization TypeThe key identifying which authorization to look for (credit_bureau_consent, terms_and_conditions, etc.)
Check SignedRequire an actual signature, not just existence
Authorization AgeMax age since the record was created (minutes, hours, or days)
Signature AgeMax age since it was last signed (minutes, hours, or days)
Selected VariableStores the authorization object for later use

Configuration tab

Advanced tab

Output Handles

HandleWhen
TRUEAuthorization exists and passes all checks
FALSEMissing, unsigned, or too old

Prerequisites

The conversation must be authenticated — Login or Create Borrower must have run first. The authorization type must exist in the tenant's data model; referencing a nonexistent key routes FALSE, not error.

On this page