Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

savemoney-api

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

savemoney-api

savemoney-api backend using nodejs and firebase

  • 1.0.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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": "isallkun@bangkit.academy",
      "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": "isallkun@bangkit.academy",
      "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": "isallkun@bangkit.academy",
      "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)

FAQs

Package last updated on 12 Mar 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc