API Documentation
  • 🏡Home
  • Overview
    • 💡What we do
    • ✨Our Features
  • General Guide
    • 🏷️Introduction
    • 📪Test and Go Live
    • 💁Configuration
      • Custormers
        • Create Customer
        • Fetch Loan Customers
        • Fetch Customers
      • Loan Types
        • Fetch Loan Types
        • Loan Reasons
      • Country
        • Get all countries
        • Get states by country Id
      • Branch
        • Create Branch
        • Branches
      • Sales Person
        • Create a Salesperson
        • Get Sales Persons
      • Team
        • Create a Team
        • Get Teams
      • Employers
      • Industries
      • Commission
  • Products Guide
    • 🏛️Loans
      • New Loan Application
      • Activate/De-Activate Auto approval
      • Loan Information
      • Active Loans
      • Repayment Schedule Calculation
      • Create payment entries
      • Spool Repayments Due
      • Repayment Activation File
      • Repayment Activation Information
      • Disburse
    • 🪝Webhooks
      • Webhooks Verification.
      • Verification Steps
Powered by GitBook
On this page

Was this helpful?

  1. General Guide
  2. Configuration
  3. Custormers

Create Customer

Creates a customer

Creates a new customer on the application

POST https://<your_business_alias>.lendastack.io/ias/loan/createperson

This endpoint creates a new customer on the application

Headers

Name
Type
Description

Authentication*

String

The encoded combination of your public key and secret key (see the Test and go live section of the docs)

Request Body

Name
Type
Description

emailAddress

String

The Email address of the new customer

firstName

String

The first name of the new customer

lastName

String

The last name of the customer

dateOfBirth

String

Date of birth of the customer (example: "2005-05-21")

phoneNumber

String

The customer's phone number

{
    "data": 1072,
    "status": true,
    "message": "Success"
}
{
    "status": false,
    "message": "Email exist already"
}
{
    "status": false,
    "message": "Phone exist already"
}
PreviousCustormersNextFetch Loan Customers

Last updated 1 year ago

Was this helpful?

💁