Skip to main content

Credit Application Resources

This page provides an overview of the credit application resource types available in the Unit API.

Credit Application Types

Unit supports two credit application resource types, each designed for different use cases:

Resource TypeDescriptionUse Case
ExistingCustomerCreditApplicationCredit application for existing customersWhen an existing customer applies for credit products
OnboardingCreditApplicationCredit application for new customers during onboardingWhen a new customer applies for credit during the application process

Resource Schemas

Existing Customer Credit Application

An Existing Customer Credit Application represents a credit application submitted by a customer who is already in your system.

See the full schema at ExistingCustomerCreditApplication Resource.

Onboarding Credit Application

An Onboarding Credit Application represents a credit application submitted by a new customer who is in the process of applying for banking services.

See the full schema at OnboardingCreditApplication Resource.

Common Attributes

All credit application resources share these common attributes:

AttributeTypeDescription
idstringUnique identifier for the credit application
typestringThe credit application type (e.g., existingCustomerCreditApplication, onboardingCreditApplication)
statusstringCurrent status of the credit application (Created, Pending, ManualReview, Approved, Denied, Canceled)
createdAtstringISO 8601 timestamp of when the credit application was created
updatedAtstringISO 8601 timestamp of when the credit application was last updated
aggregatorAccessTokensarrayOptional. Array of aggregator access tokens (e.g., Plaid processor tokens)
annualIncomeintegerOptional. The annual income of the applicant in cents
numberOfEmployeesstringOptional. Number of employees of the business
yearsInBusinessintegerOptional. Number of years the business has been in operation
additionalUnderwritingDataobjectOptional. Key-value pairs of underwriting data per credit policy
approvedLimitintegerThe approved credit limit in cents (only present when status is Approved)
denyReasonstringThe reason for denial (only present when status is Denied)

Common Relationships

RelationshipDescription
lendingProgramThe Lending Program for which this credit application is related to
customerThe Customer associated with the credit application (for ExistingCustomerCreditApplication)
applicationThe Application for which this credit application applies to (for OnboardingCreditApplication)

For complete schema definitions and all available attributes, see the Resources API reference.