Registered Office: Ajay Niwas, Gulab Bag, Karauli, Rajasthan Secretary: +91 99280 54064
Deposits & loans for members only · A registered co-operative society, not a bank
Digital Services

Member Services

A secure online space for members is being prepared. Until it is launched, all member services are available at the registered office.

Portal under development. This page is a frontend prototype. Member login is not yet enabled — no member data is stored on or transmitted from this website. The interface below shows the services that will be available once the Society connects its secure member-services backend. Please do not enter any password or PIN on this page.

Member Account

Membership number, share holding and nominee details.

Planned

Deposit Details

Savings balance, term deposits, maturity dates and interest credits.

Planned

Loan Details

Sanctioned amount, outstanding balance, instalment schedule.

Planned

Statement

Account statements for a chosen period.

Planned

Payment History

Deposits, withdrawals and loan repayments with receipts.

Planned

Notices

General Body notices and Society announcements.

Planned

Service Requests

Passbook, nominee update, address change and other requests.

Planned

Security

Login history and secure sign-out on every device.

Planned
For the development team

API-ready architecture

The portal frontend is built to consume a JSON API served from the same domain. assets/js/portal.js contains the JumboAPI client with every endpoint stubbed; the PHP router at api/v1/ returns 501 Not Implemented for each route until the backend is connected. See docs/API-PLAN.md and database/schema.sql.

  • No credentials are collected or stored by the prototype.
  • Authentication is designed as OTP-based session login with server-side sessions, rate limiting and audit logging.
  • All responses use a single JSON envelope so the UI can be connected without redesign.
  • POST /api/v1/auth/request-otp
  • POST /api/v1/auth/verify-otp
  • GET /api/v1/member/profile
  • GET /api/v1/member/deposits
  • GET /api/v1/member/loans
  • GET /api/v1/member/statement?from=&to=
  • GET /api/v1/member/payments
  • GET /api/v1/notices
  • POST /api/v1/member/service-requests
  • POST /api/v1/auth/logout