You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This server act as a database and storage to keep track of freqeuntly used household items
First, create an account at http://localhost:5000/create_user with email and password, a hashed API key will be sent to your email upon successful registration
Include the credentials required in the request's header to perform any CRUD (Create, Read, Update and Delete) actions on the inventory records in your account at http://localhost:5000/item
Creating Account
API endpoint: http://localhost:5000/create_user
HTTP method: POST
Body
Remarks
email
mandatory, unique for each account
password
mandatory, will be encrypted before storing in the database
A hashed API key will be sent to the email upon successful account registration
No duplicate emails are allowed (can't use the same email to register multiple accounts)
example of how to create account using Javascript / Typescript: