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. Sales Person

Create a Salesperson

Creates a salesperson on the System

Creates a salesperson.

POST https://<your_business_alias>.lendastack.io/ias/salesperson/newuser

This endpoint creates a salesperson on the system.

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

MiddleName

String

Middle Name

FirstName*

String

First Name

LastName*

String

Last Name

Sex

String

Gender

Teams

object

Teams belongs to [{"id":5,"text":"CDL Team"},{"id":6,"text":"CDL Team 2"}]

Dob*

String

Date of Birth

PhoneNumber*

String

Phone Number

EmailAddress*

String

Email Address

StaffId*

String

Staff Id

BranchId*

int

Branch Id

{
    "userId": 50,
    "personId": 238,
    "personCode": "CUS0000238",
    "branchId": 1,
    "firstName": "Test TTGGFR",
    "lastName": "Test T",
    "dateOfBirth": "5-2-2003",
    "phoneNumber": "08061517679",
    "emailAddress": "www4etw@yopmail.com",
    "staffId": "Test009894733t43",
    "sex": "male",
    "canSell": true
}
"The email address belong to another user."
"The staff ID belong to another user."
PreviousSales PersonNextGet Sales Persons

Last updated 1 year ago

Was this helpful?

💁