upes-open / OSoC-24-BizSync

GNU Affero General Public License v3.0
2 stars 12 forks source link

Financial Management API #25

Open Akki019 opened 6 days ago

Akki019 commented 6 days ago

Develop the backend API for Financial Management, including endpoints for retrieving, adding, and updating financial records, as well as generating reports.

Requirements:

GET /api/financials: Retrieve a list of all financial records. POST /api/financials: Add a new financial record. PUT /api/financials/:id: Update an existing financial record. GET /api/reports: Retrieve reports based on selected criteria.

Database Schema:

Financial Record: type (String) amount (Number) date (Date) category (String) status (String)

Perform unit testing using Postman