Adds a shoppingItem to a logged in user's shoppingcart. Requires a valid session.
The http request requires the body to contain amount (number, amount of product), gameSku (string, SKU of a product to add)
The response the api could give. See swagger api documentation for the specific statuses.
Changes the amount of a logged in user's shoppingItem.
The http request requires a body containing the amount (number, what the user wants the amount of a product to be), idShoppingCartItem (number, id of shoppingItem)
The response the api could give. See swagger api documentation for the specific statuses.
Deletes the shoppingItem from a logged in user's shoppingCart.
The http request requires the body to contain idShoppingCartItem (number, id of a shoppingItem) and requires the user to have a valid session using the sessionService requirements for a session to be validated.
The response the api could give. See swagger api documentation for the specific statuses.
Retrieves the entire cart of a logged in user.
The http request requires the user to have a valid session using the sessionService requirements for a session to be validated.
The response the api could give. See swagger api documentation for the specific statuses.
Endpoints that interact with a logged in user's shoppingcart.