You have an eCommerce project . You have Brands & Products for those brands . Using Django REST Framework create this project , and provide the RESTful APIs for CRUD (Create, Read, Update, Delete) operations on both models .
- title
- description
- established_at
- city
- brand
- name
- description
- image_url
- price
- quantity
- is_active
- Use Appropriate field types .
- Create CRUD API endpoints for each model.
- Create an endpoint to display the products of a specific brand .
- Add skip & get when listing the list of brands or products (limiting the number of brands/products displayed)
- Add search API endpoint for a specific brand by name.