Skip to content

movesfinancial/unit-node-sdk

This branch is 117 commits behind unit-finance/unit-node-sdk:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Sep 26, 2023
e8074cf · Sep 26, 2023
Aug 17, 2023
Sep 18, 2023
Sep 18, 2023
Sep 26, 2023
Jun 20, 2023
Jul 16, 2021
Jun 27, 2021
Jun 24, 2021
May 16, 2023
May 21, 2023
Feb 3, 2022
Mar 17, 2022
Sep 26, 2023
Sep 26, 2023
Jun 20, 2023
Jan 16, 2023
Aug 17, 2023

Repository files navigation

unit-node-sdk

This library provides a typescript wrapper to Unit's API.

Documentation

See https://docs.unit.co/

Installation

npm install @unit-finance/unit-node-sdk

Usage

Create an individual application (es6)

import { Unit } from '@unit-finance/unit-node-sdk'

const unit = new Unit(UNIT_TOKEN, UNIT_API_URL)

let createApplicationRequest = {
    type: "individualApplication",
    attributes: {
        "ssn": "000000002",
        "fullName": unit.helpers.createFullName("Richard", "Hendricks"),
        "dateOfBirth": "2001-08-10",
        "address": unit.helpers.createAddress("20 Ingram St", null, "Forest Hills", "CA", "11375", "US"),
        "email": "april@baxter.com",
        "phone": unit.helpers.createPhone("1", "2025550158"),
        "ip": "127.0.0.1",
        "ein": "123456789",
        "dba": "Pied Piper Inc",
        "soleProprietorship": true,
        "sourceOfIncome": "EmploymentOrPayrollIncome",
        "annualIncome": "Between50kAnd100k",
        "occupation": "ArchitectOrEngineer",
        "numberOfEmployees": "Between5And10",
        "businessVertical": "TechnologyMediaOrTelecom",
        "website": "https://www.piedpiper.com",
    }
}

let application = await unit.applications.create(createApplicationRequest).catch(err => {
    // handle errors
    return err
})

console.log(application)

Create an individual application (typescript)

import { CreateIndividualApplicationRequest, Unit, UnitError } from "@unit-finance/unit-node-sdk";

const unit = new Unit(UNIT_TOKEN, UNIT_API_URL)

(async () => {
    let createApplicationRequest: CreateIndividualApplicationRequest = {
        type: "individualApplication",
        attributes: {
    		"ssn": "000000002",
        	"fullName": unit.helpers.createFullName("Richard", "Hendricks"),
            "dateOfBirth": "2001-08-10",
            "address": unit.helpers.createAddress("20 Ingram St", null, "Forest Hills", "CA", "11375", "US"),
            "email": "april@baxter.com",
            "phone": unit.helpers.createPhone("1", "2025550158"),
            "ip": "127.0.0.1",
            "ein": "123456789",
            "dba": "Pied Piper Inc",
            "soleProprietorship": true
            "sourceOfIncome": "EmploymentOrPayrollIncome",
            "annualIncome": "Between50kAnd100k",
            "occupation": "ArchitectOrEngineer",
            "numberOfEmployees": "Between5And10",
            "businessVertical": "TechnologyMediaOrTelecom",
            "website": "https://www.piedpiper.com",
        }
    }

    let application = await unit.applications.create(createApplicationRequest).catch<UnitError>(err => {
        // handle errors
        return err
    })

    console.log(application)
})();

Fetching a customer

import { Unit, UnitError } from "@unit-finance/unit-node-sdk";

const unit = new Unit(UNIT_TOKEN, UNIT_API_URL)

(async () => {
    let customer = await unit.customers.get(customerId).catch<UnitError>(err => {
        // handle errors
        return err
    })

    console.log(customer)
})();

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Languages

  • TypeScript 99.7%
  • JavaScript 0.3%