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. Branch

Create Branch

Creates a Branch on the System

Creates a Branch

POST https://<your_business_alias>.lendastack.io/ias/branch

This endpoint creates branch 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

branchName*

String

The name of the branch to be created

{
    "branchId": 22,
    "branchName": "CDL Hello World Three 4",
    "stateId": 0,
    "countryId": 0,
    "status": 0,
    "members": 0,
    "appOwnerKey": "5a4d47a6-1bb8-4140-bb2d-3383b6ed3638",
    "createdAt": "2023-10-17T08:53:12.9746589Z"
}
"Branch name already exist!"
PreviousBranchNextBranches

Last updated 1 year ago

Was this helpful?

💁