Wealthcrop — Help & Knowledge Center
Overview — What Wealthcrop provides
Wealthcrop is a mutual fund distribution & research platform focused on institutional-grade tools for advisors and direct customers. Our core features:
- Scheme discovery (fast search by name/ISIN/code)
- NAV & returns with daily updates and historical charts
- SIP & lumpsum calculators and backtests
- Secure onboarding with KYC, UCC/PAN handling and payment gateway integration
- API access for partners (scheme list, returns, nav history)
- Compliance & audit features (logs, consent capture, data retention)
Useful quick links
How to use this help center
- Search above or click the tabs to browse topics.
- Click any accordion item to expand for step-by-step guidance.
- Copy policy snippets or links into your product help or legal pages.
Onboarding & KYC
- Create company profile & add authorised user (email + mobile + role).
- Complete KYC collection form — PAN, Aadhaar, address proof, photo, bank details.
- Run eKYC via Aadhaar (if supported) or manual KYC upload.
- Verify bank account via micro-deposit or UPI OTP depending on payment provider.
- Assign UCC and map to customer profile for downstream transfer/transaction flows.
Pro tip: Keep scanned documents less than 2MB and in PDF/JPG. Keep a mapping table of UCC → PAN for reconciliation.
- PAN: clear scan, .pdf/.jpg, readable characters
- Aadhaar: masked copy allowed (last 4 digits visible)
- Address proof: passport/driver’s license/utility bill (not older than 3 months)
- Cancelled cheque: required for mandate/auto-debit
Typically, KYC verification takes 24–72 hours depending on the method. For eKYC via Aadhaar OTP, verification is instant (minutes). For manual verification, ensure documents are legible and UCC mapping is provided.
Investing — SIPs, Lumpsum & Order flow
- User selects scheme & plan (Direct/Regular) — select option (Growth/Dividend).
- User chooses SIP amount, start date and frequency (monthly/quarterly).
- Mandate setup: UPI or NACH/autodebit. NACH mandates require bank verification and mandate registration.
- On successful mandate, SIP becomes active. Provide confirmation & schedule next date.
Edge cases: failed mandate retries, bank returned mandates, and SIP pause/resume functionality must be surfaced to users.
Lumpsum uses the payment gateway (BSE STAR / payment provider). Steps:
- User picks scheme, fills amount, and verifies PAN/KYC status.
- Redirect to payment gateway (payment flows: UPI / netbanking / cards as enabled).
- On success, BSE/order reference is stored; units are allocated on NAV date.
- Top-up: recurring percentage or fixed amount increase (monthly/quarterly)
- Pause: user can pause SIP (no debit) for N cycles
- Cancel: immediate cancellation (pending mandates remain)
- Modify: change amount/date; ensure next debit is scheduled accordingly
NAV — Net Asset Value; per-unit value of the scheme, updated daily after market close.
Return metrics — Absolute return and CAGR (compound annual growth rate). Use exact date math and trading-day aware calculations for production.
Payments & Gateway Integration
Wealthcrop supports:
- UPI (fast, recommended)
- NACH / ECS / AutoDebit (for SIP mandates)
- Netbanking / Cards (for lumpsum)
BSE STAR MF is commonly used for final settlement for AMCs.
- Store gateway transaction id & status (pending/failed/settled).
- Map payment to UCC & user id for audit trails.
- Set up webhook endpoints for gateway events and signature verification.
Tax & Compliance
- Equity funds (holding >60%): Long term capital gains (LTCG) — 10% above ₹1 lakh without indexation (since FY 2018).
- Debt funds: LTCG taxed @20% with indexation benefit; STCG taxed as per slab.
- ELSS: Eligible for Section 80C deduction (limit ₹1.5 lakh).
Tax guidance above is summary only — consult a tax advisor for specifics and local variations.
- Record retention policy for transactions & KYC (retain per regulator — typically 8 years)
- Consent records for eKYC & marketing (timestamped)
- AML/KYB for corporate accounts
- Periodic reconciliation with AMCs & CAMS/BSE feeds
Troubleshooting & Common Errors
- Confirm endpoint path and query param names — e.g.
/schemes/schemes/search?q=vs/schemes/search?q=. - Check CORS settings on API host; ensure WP origin is allowed.
- Use browser devtools → Network to inspect raw response and HTTP status.
- Temporarily test curl from server to confirm endpoint is reachable (use same path & query).
This usually means saved HTML/JS contains an unescaped character or WP has modified quotes. Fixes:
- Use a Custom HTML block or raw template (avoid Visual editor).
- Wrap long template strings carefully; avoid inline backticks where WP may sanitize.
- Check console for line number and paste the snippet into a JS validator.
Solution: ensure research page reads ?code=WR000... from URL and calls details/returns endpoints with that code. Persist last selected code in localStorage so homepage → research works seamlessly.
API & Developer Notes
| Purpose | Example endpoint |
|---|---|
| Scheme search | /schemes/schemes/search?q=axis (fallback /schemes/search?q=) |
| Scheme details | /scheme/details/WR00008918 |
| Returns & nav history | /schemes/schemes/returns/WR00008918?start=YYYY-MM-DD&end=YYYY-MM-DD |
Return payloads expected: data.returns object + data.nav_history array with {date, nav} entries.
- Always URL-encode query params using
URLSearchParams. - Use fallback endpoints if primary returns 422/404.
- Cache scheme list on client for a session to reduce calls.
- Use server-side caching (materialized views) for nav history heavy queries.
- API TLS certificate valid & CORS configured
- Rate-limits & throttling in place
- Audit logs for all create/modify flows
- Load test nav_history endpoints (large queries)
Glossary — Quick terms
- NAV
- Net Asset Value — per unit price of an MF scheme.
- SIP
- Systematic Investment Plan — regular periodic investment.
- UCC
- Unique Client Code — broker/platform identifier for investor accounts.
- ISIN
- International Securities Identification Number — unique security id.
- CAGR
- Compound Annual Growth Rate — annualized return over a period.
Contact & Support
If you need help, use the contact options below. For urgent production issues, call the on-call number and email support with request id.
Report an incident
- Email
help.mf@wealthcrop.inwith Subject:Incident: [short summary] - Include user id, request id, timestamp, steps to reproduce, and console/network dump.
- For P0/P1, call on-call number and raise a ticket in the incident tracker (Jira/ServiceNow).
