Initiate Application

Applies for a new spending limit with an existing customer account.

/users/me/apply

POST https://apis.sandbox.flexshopper.com/v3/users/me/apply

Initiates a customer's application

Headers

Request Body

{
  "data": {
    "userId": "1234-asdf-4321-fdsa",
    "firstName": "John",
    "lastName": "Doe",
    "email": "Doe",
    "createdAt": "2018-03-19T15:51:27.080Z",
    "transactions": [],
    "decision": {
      "approved": true,
      "status": "approved",
      "spendingLimit": 1300,
      "availableBalance": 1200,
      "availableWeeklySpending": 120,
      "createdAt": "2018-03-19T15:51:27.080Z"
    },
    "verificationStatus": "succeeded"
  }
}

POST https://apis.sandbox.flexshopper.com/v3/users/me/apply

Request Body

POST https://apis.sandbox.flexshopper.com/v3/users/me/apply

Request Body

POST https://apis.sandbox.flexshopper.com/v3/users/me/apply

Request Body

POST https://apis.sandbox.flexshopper.com/v3/users/me/apply

Request Body

POST https://apis.sandbox.flexshopper.com/v3/users/me/apply

Request Body

POST https://apis.sandbox.flexshopper.com/v3/users/me/apply

Request Body

POST https://apis.sandbox.flexshopper.com/v3/users/me/apply

Request Body

Payload example

{
  "driversLicenseNumber": "I234567800",
  "driversLicenseState": "FL",
  "gender": "female",
  "street1": "123 Test Dr.",
  "street2": "Apt 2",
  "city": "Hollywood",
  "regionAbbr": "FL",
  "postalCode": "33021",
  "country": "US",
  "mobilePhone": "6514447773",
  "dateOfBirth": "1998-03-23",
  "ssn": "888776666",
  "employmentInformation": {
    "name": "Flexshopper",
    "phone": "6514447773",
    "monthlyIncome": 1250,
    "payFrequency": "weekly"
  },
  "bankAccount": {
    "routing": "888776666",
    "account": "3483898238239",
    "type": "checking"
  },
  "deviceFingerprint": "...long base64-encoded string",
  "expectedPurchaseAmount": 1200,
  "optInMarketing": true,
  "additionalData": {
    "storeEmployeeId": "123",
    "commonApplicationKey": {
      "synchrony": "123"
    },
    "firstGlance": true
  }
}

If the customer has already applied, an error with code 409 will be returned.

Last updated