Giter VIP home page Giter VIP logo

altimetrik-'s Introduction

# Telecom Customer Management System

This is a web application designed to manage telecom mobility customers. It provides functionalities for registering new customers, choosing plans, renewing plans, upgrading/downgrading plans, and displaying customer details in a table.

Technologies Used

  • Backend: Node.js with Express for REST APIs
  • Database: MongoDB

Installation

  1. Clone this repository:

    git clone 

Backend APIs

Register New Customer

  • URL: /api/customers/register

  • Method: POST

  • Request Body:

    jsonCopy code

    { "name": "Customer Name", "dob": "YYYY-MM-DD", "email": "[email protected]", "adharNumber": "123456789012", "assignedMobileNumber": "1234567890", "plan": { "name": "Plan Name", "cost": 499, "validity": 365, "status": "Active" } }

  • Response: Newly registered customer object

Choose New Plan

  • URL: /api/customers/choose-plan

  • Method: POST

  • Request Body:

    jsonCopy code

    { "customerId": "customer_id", "plan": { "name": "New Plan Name", "cost": 299, "validity": 180, "status": "Active" } }

  • Response: Updated customer object with the new plan

Renew Plan

  • URL: /api/customers/renew-plan

  • Method: POST

  • Request Body:

    jsonCopy code

    { "customerId": "customer_id", "renewalDate": "YYYY-MM-DD", "planStatus": "Active" }

  • Response: Updated customer object with renewed plan details

Upgrade/Downgrade Plan

  • URL: /api/customers/change-plan

  • Method: POST

  • Request Body:

    jsonCopy code

    { "customerId": "customer_id", "newPlan": { "name": "New Plan Name", "cost": 199, "validity": 90, "status": "Active" } }

  • Response: Updated customer object with the new plan

Display Customer Table

  • URL: /api/customers
  • Method: GET
  • Response: Array of customer objects

altimetrik-'s People

Contributors

sahil-saini28 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.