Skip to content

1-month Loan Dashboard Detail Active

These APIs are used to fetch dashboard detail for 1-month loans.


1-month Loan Detail Active
1-month Loan Detail Active


URL /v4/dashboard/detail/active
METHOD POST
<br>

Request body

{
  "bankCode": "SCB",
  "mobileNumber": "9845528933",
  "loanNumber": "1200000000003300"
}


Field Data Type Description
bankCode String Swift code representing the bank (e.g., SCB).
customerNumber String Unique identifier for the customer.
loanNubmer String Unique identifier for the loan.


Response body <button>Copy</button>

{
  "status": "OK",
  "statusCode": 200,
  "series": "SUCCESSFUL",
  "code": 20,
  "phrase": "Successful",
  "message": "Existing loan details fetched successfully.",
  "data": {
    "appView": {
      "header": {
        "title": "Existing Loan Details"
      },
      "body": {
        "yourLoanSection": {
          "type": "section",
          "title": "Your loan",
          "items": [
            {
              "key": "Your loan amount",
              "value": "NPR 30,000.00"
            },
            {
              "key": "Interest rate per month",
              "value": "1.33%"
            },
            {
              "key": "For a period of",
              "value": "1 month"
            }
          ]
        },
        "loanRepaymentSection": {
          "type": "section",
          "title": "Your loan repayment",
          "items": [
            {
              "key": "Total payment amount",
              "value": "NPR 31,200.00"
            },
            {
              "key": "Amount credited on",
              "value": "24th Sep, 2023"
            },
            {
              "key": "Repayment on",
              "value": "23rd Nov, 2023"
            }
          ]
        },
        "lateFeeSection": {
          "type": "section",
          "title": "In case you miss the payment on time",
          "items": [
            {
              "key": "Late fees per month",
              "value": "NPR 300.00"
            },
            {
              "key": "On overdue outstanding principle per month",
              "value": "+0.17%"
            }
          ]
        },
        "loanAdminFeeSection": {
          "type": "section",
          "title": "Loan Administration Fee",
          "items": [
            {
              "key": "Loan administration fee",
              "value": "NPR 500.00"
            }
          ]
        },
        "paymentRecordSection": {
          "type": "table",
          "title": "Payment Date",
          "columns": [
            {
              "header": "Payment Date",
              "field": "date"
            },
            {
              "header": "Payable Amount",
              "field": "amount"
            },
            {
              "header": "Status",
              "field": "status"
            }
          ],
          "rows": [
            {
              "date": "Oct 22, 2022",
              "amount": "30,407.00",
              "status": "ACTIVE"
            }
          ]
        }
      }
    }
  },
  "timestamp": "01-22-2025 11:32:57 AM"
}