Please enable JavaScript.
Coggle requires JavaScript to display documents.
STORE, Backend system design for an ecommerce platform. - Coggle Diagram
STORE
Users
Model
Session token
Phone
name
email
gender
created_at
Updated_at
Serializers
Create
Update
View
generate session_token
Sign in
Sign out
Login/logout will come from django auth.
URLs
Login
Logout with ID
default routing
Order
model
user
product names
transaction_id
total_Amount
total products
created_at
updated_at
View
Validate user_session
add
URL
add id/token
default
products
view
get all products_serialized
Model
Category
isactive
price
name
description
image
updated_at
created_at
Categories
Model
Created_at
Name
Description
Updated_at
View
Get all categories_serialized
Payment(Braintree, Stripe)
views
validate_user_session
generate_token
process_payment
URLs
get token id/ token
process id/ token
Backend system design for an ecommerce platform.