Skip to main content
Statuses a credit application can return while it is being validated and decisioned, and the responses your integration should expect for each. For statuses on a signed contract rather than an application, see Contract Statuses.

The two checks

An application passes through two checks, in order, and the status tells you which one it is sitting in.
  1. Can a credit report be retrieved, and does it match the application? CREDIT_FREEZE and NO_HIT are failures of this step. Identity has not been assessed yet.
  2. Does the identification match the applicant? PENDING with a pendingReason is a failure of this step.
Only the consumer can clear most of these. Your integration should surface the status to the consumer and let them resolve it in the application flow — not queue it for merchant action. See Resolving Pending Applications.

Status reference

Terminal statuses

The 30-day clock runs from the time of application, not from when the status changed. An application that pends on day 25 has five days left, not thirty. Do not compute the deadline from the status transition.
An expired application may receive a Statement of Credit Denial, Termination, or Change (SCDTC). Expiry is not a decline — no credit decision was reached.

Example responses

Base URL shown is the test environment. See Testing for credentials and the sandbox.

Credit freeze

No hit

A PATCH with corrected applicant data re-runs the lookup. Supplying a full SSN, a previous last name or a previous address is what usually resolves it.

Identity verification

Returned on PATCH when identity verification is the pending reason.

Unresolved data mismatch

This one cannot be cleared through the API. The consumer must speak to UAS and supply documentary identification.

Handling these in your integration

  • Do not poll aggressively while an application is pending. The consumer is working through a resolution flow that can take minutes or days.
  • Do not treat a pend as a decline. Applications only pend if they otherwise meet the finance program’s criteria for approval.
  • Do not re-submit a new application to clear a pend. A duplicate creates its own problems and the original stays open for its full 30 days.
  • Surface the reason to the consumer, and link them to the resolution steps on the consumer FAQ.