Giter Club home page Giter Club logo

savemoney-api's Introduction

REST API SAVEMONEY

Introduction

This API provides endpoints to manage users, expenses, and incomes for the SaveMoney application. Using Firebase, Firestore, and Nodejs Express.


Demo : https://savemoney-api-rdiyde43ea-uc.a.run.app/

User Endpoints

Register

  • Endpoint: /auth/register
  • Method: POST
  • Description: Register a new user with name, email, and password.
  • Body:
    {
      "email": "[email protected]",
      "password": "123456789",
      "name": "Faishal Ananta Ridha"
    }

Login

  • Endpoint: /auth/login
  • Method: POST
  • Description: Authenticate user by email and password to obtain access token.
  • Body:
    {
      "email": "[email protected]",
      "password": "123456789"
    }

Logout

  • Endpoint: /auth/logout
  • Method: GET
  • Description: Logout the authenticated user.

Get All User Information

  • Endpoint: /api/users
  • Method: GET
  • Description: Retrieve information for all users. (Authentication required)

Get User

  • Endpoint: /api/users/me
  • Method: GET
  • Description: Retrieve information for the authenticated user. (Authentication required)

Update User

  • Endpoint: /api/users/me
  • Method: PUT
  • Description: Update information for the authenticated user. (Authentication required)
  • Body:
    {
      "email": "[email protected]",
      "name": "isallkun bangkit"
    }

Delete User

  • Endpoint: /api/users/me
  • Method: DELETE
  • Description: Delete the authenticated user. (Authentication required)

Expense Endpoints

Add Expense

  • Endpoint: /api/users/expense
  • Method: POST
  • Description: Add a new expense for the authenticated user. (Authentication required)
  • Body:
    {
      "amount": "2000",
      "category": "shopping",
      "note": "pulsa byu"
    }

Get All Expenses

  • Endpoint: /api/users/expense
  • Method: GET
  • Description: Retrieve all expenses for the authenticated user. (Authentication required)

Get Expense By ID

  • Endpoint: /api/users/expense/:id
  • Method: GET
  • Description: Retrieve a specific expense by ID for the authenticated user. (Authentication required)

Update Expense By ID

  • Endpoint: /api/users/expense/:id
  • Method: PUT
  • Description: Update a specific expense by ID for the authenticated user. (Authentication required)
  • Body:
    {
      "amount": "10000",
      "category": "shopping",
      "note": "pulsa byu"
    }

Delete Expense By ID

  • Endpoint: /api/users/expense/:id
  • Method: DELETE
  • Description: Delete a specific expense by ID for the authenticated user. (Authentication required)

Income Endpoints

Add Income

  • Endpoint: /api/users/incomes
  • Method: POST
  • Description: Add a new income for the authenticated user. (Authentication required)
  • Body:
    {
      "amount": "2000",
      "category": "salary",
      "note": "Gaji Bulanan"
    }

Get All Incomes

  • Endpoint: /api/users/incomes
  • Method: GET
  • Description: Retrieve all incomes for the authenticated user. (Authentication required)

Get Income By ID

  • Endpoint: /api/users/incomes/:id
  • Method: GET
  • Description: Retrieve a specific income by ID for the authenticated user. (Authentication required)

Update Income By ID

  • Endpoint: /api/users/incomes/:id
  • Method: PUT
  • Description: Update a specific income by ID for the authenticated user. (Authentication required)
  • Body:
    {
      "amount": "60000",
      "category": "salary",
      "note": "Gaji Mingguan"
    }

Delete Income By ID

  • Endpoint: /api/users/incomes/:id
  • Method: DELETE
  • Description: Delete a specific income by ID for the authenticated user. (Authentication required)

savemoney-api's People

Contributors

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