v1

latestOpenAPI 3.0.02026-07-2417517.4 KB
Applying with Katapult

Create an Application

To create the Katapult application for a consumer, the customer’s application data as shown in the Application JSON to the right should be sent either in a POST or PATCH request to Katapult.

post/application/

Request body

phonestring
billing_first_namestring
billing_last_namestring
emailstring
billing_addressstring
billing_address2string
billing_citystring
billing_statestring
billing_zipstring
dob_daynumber
dob_monthnumber
dob_yearnumber
incomestring
ssnstring
last_pay_daystring
next_pay_daystring
payment_frequency'weekly' | 'bi-weekly' | 'semi-monthly' | 'monthly'
privacy_agreement_accepted'true' | 'false'

Example request

{
  "phone": "1234567890",
  "billing_first_name": "John",
  "billing_last_name": "Doe",
  "email": "jdoe@jtest.com",
  "billing_address": "14 28th Ave.",
  "billing_city": "New York",
  "billing_state": "NY",
  "billing_zip": "11102",
  "dob_day": 15,
  "dob_month": 7,
  "dob_year": 1984,
  "income": "50000.00",
  "ssn": "342134125",
  "last_pay_day": "2016-10-14",
  "next_pay_day": "2016-10-28",
  "payment_frequency": "semi-monthly",
  "privacy_agreement_accepted": "true"
}

Response

Success Response