-
Notifications
You must be signed in to change notification settings - Fork 4
Gateway
Connor Fong edited this page Mar 7, 2020
·
1 revision
The gateway service validates all incoming traffic and defines all possible client operations.
POST /user/login
A user is able to log in and receive their userId.
GET /ingredient/:userId
A user is able to see their current inventory of ingredients.
POST /ingredient/:userId
A user is able to add an ingredient to their inventory of ingredients.
PATCH /ingredient/:userId
A user is able to update the quantity of an ingredient within their inventory.
DELETE /ingredient/:userId
A user is able to delete an ingredient from their inventory