This is a personal day financial tracking system, which is intended to track personal finances, how money is spent, and how you can improve your financial practices.
- Welcome message endpoint
- User Registration endpoint
- User Login endpoint
- User Forgot Password endpoint
- User Reset Password endpoint
- User Logout endpoint
- User Create People and Groups endpoint
- User View People and Groups endpoint
- User Update People and Groups endpoint
- User Delete People and Groups endpoint
Verb | Endpoint | Code | Availability |
---|---|---|---|
GET | / | 200 OK | Public |
POST | /api/auth/register | 201 CREATED | Public |
POST | /api/auth/login | 200 OK | Public |
POST | /api/auth/forgot-password | 200 OK | Public |
POST | /api/auth/reset-password | 200 OK | Private |
POST | /api/auth/logout | 200 OK | Private |
POST | /api/people | 201 CREATED | Private |
GET | /api/people | 200 OK | Private |
PUT | /api/people/:id | 200 OK | Private |
DELETE | /api/people/:id | 200 OK | Private |