{"id":18290322,"url":"https://github.com/landofcoder/module-seller-product-list","last_synced_at":"2025-04-09T07:27:41.792Z","repository":{"id":42631291,"uuid":"462981726","full_name":"landofcoder/module-seller-product-list","owner":"landofcoder","description":"Module magento 2 seller products list, products slider - support news, hot deal, featured, best seller products","archived":false,"fork":false,"pushed_at":"2022-03-30T08:52:34.000Z","size":29,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-15T01:42:53.321Z","etag":null,"topics":["magento2","magento2-module","magento2-multi-vendor","magento2-products-slider","seller-product-api"],"latest_commit_sha":null,"homepage":"https://landofcoder.com/magento-2-marketplace-extension.html/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/landofcoder.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-02-24T02:33:03.000Z","updated_at":"2023-08-29T02:16:59.000Z","dependencies_parsed_at":"2022-07-21T12:32:31.512Z","dependency_job_id":null,"html_url":"https://github.com/landofcoder/module-seller-product-list","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/landofcoder%2Fmodule-seller-product-list","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/landofcoder%2Fmodule-seller-product-list/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/landofcoder%2Fmodule-seller-product-list/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/landofcoder%2Fmodule-seller-product-list/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/landofcoder","download_url":"https://codeload.github.com/landofcoder/module-seller-product-list/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247997537,"owners_count":21030641,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["magento2","magento2-module","magento2-multi-vendor","magento2-products-slider","seller-product-api"],"created_at":"2024-11-05T14:10:28.218Z","updated_at":"2025-04-09T07:27:41.775Z","avatar_url":"https://github.com/landofcoder.png","language":"PHP","funding_links":["https://www.paypal.com/paypalme/allorderdesk"],"categories":[],"sub_categories":[],"readme":"# Landofcoder Magento 2 Seller Product List\nSupport filter products list of seller\n\n## Core Features\n- Module supports you to create a wanted list of products based on attribute, types, conditions of items.\nTo create a rule list is very simple. Also, this module is easy to configure too.\n- The module just support REST API features.\n- Support GraphQl [Seller Product List Graph Ql Module](https://github.com/landofcoder/module-seller-product-list-graph-ql)\n\n## Install Extension\n\n- Require Setup [Magento 2 Multi-Vendor Module](https://landofcoder.com/magento-2-marketplace-extension.html/)\n\n- Run command setup module via composer:\n\n```\ncomposer require landofcoder/module-seller-product-list\nphp bin/magento module:enable Lofmp_Productlist\nphp bin/magento setup:upgrade\n\n```\n\n## API docs\n\nResponse Data Success: \n```\n{\n    \"items\": [\n        {\n            \"id\": 0,\n            \"sku\": \"string\",\n            \"name\": \"string\",\n            \"attribute_set_id\": 0,\n            \"price\": 0,\n            \"status\": 0,\n            \"visibility\": 0\n            ...\n        }\n    ],\n    \"search_criteria\": {\n        \"filter_groups\": [\n        {\n            \"filters\": [\n            {\n                \"field\": \"string\",\n                \"value\": \"string\",\n                \"condition_type\": \"string\"\n            }\n            ]\n        }\n        ],\n        \"sort_orders\": [\n        {\n            \"field\": \"string\",\n            \"direction\": \"string\"\n        }\n        ],\n        \"page_size\": 0,\n        \"current_page\": 0\n    },\n    \"total_count\": 0\n}\n```\n\nError data response:\n```\n{\n  \"message\": \"string\",\n  \"errors\": [\n    {\n      \"message\": \"string\",\n      \"parameters\": [\n        {\n          \"resources\": \"string\",\n          \"fieldName\": \"string\",\n          \"fieldValue\": \"string\"\n        }\n      ]\n    }\n  ],\n  \"code\": 0,\n  \"parameters\": [\n    {\n      \"resources\": \"string\",\n      \"fieldName\": \"string\",\n      \"fieldValue\": \"string\"\n    }\n  ],\n  \"trace\": \"string\"\n}\n```\n\n### API Endpoints\n\n{sellerUrl} - is public seller url key. Example: seller-a\n\n1. New Arrival Products\n\n``[Your Domain]/V1/seller-productlist/{sellerUrl}/newarrival``\n\n2. Latest Products\n\n``[Your Domain]/V1/seller-productlist/{sellerUrl}/latest``\n\n3. Best Seller Products\n\n``[Your Domain]/V1/seller-productlist/{sellerUrl}/bestseller``\n\n4. Random Products\n\n``[Your Domain]/V1/seller-productlist/{sellerUrl}/random``\n\n5. Top Rated Products\n\n``[Your Domain]/V1/seller-productlist/{sellerUrl}/toprated``\n\n6. Specials Products\n\n``[Your Domain]/V1/seller-productlist/{sellerUrl}/specials``\n\nNote: Require use current store code for endpoint.\nExample: ``http://[your_domain]/rest/default/V1/seller-productlist/{sellerUrl}/specials``\n\ndefault - is default store view code\n\n7. Most Viewed Products\n\n``[Your Domain]/V1/seller-productlist/{sellerUrl}/mostviewed``\n\n8. Featured Products\n\n``[Your Domain]/V1/seller-productlist/{sellerUrl}/featured``\n\n9. Deals Products\n\n``[Your Domain]/V1/seller-productlist/{sellerUrl}/deals``\n\nNote: Require use current store code for endpoint.\nExample: ``http://[your_domain]/rest/default/V1/seller-productlist/{sellerUrl}/deals``\ndefault - is default store view code\n\n\n## Donation\n\nIf this project help you reduce time to develop, you can give me a cup of coffee :) \n\n[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/paypalme/allorderdesk)\n\n\n**Our Magento 2 Extensions List**\n\n* [Megamenu for Magento 2](https://landofcoder.com/magento-2-mega-menu-pro.html/)\n\n* [Page Builder for Magento 2](https://landofcoder.com/magento-2-page-builder.html/)\n\n* [Magento 2 Marketplace - Multi Vendor Extension](https://landofcoder.com/magento-2-marketplace-extension.html/)\n\n* [Magento 2 Multi Vendor Mobile App Builder](https://landofcoder.com/magento-2-multi-vendor-mobile-app.html/)\n\n* [Magento 2 Form Builder](https://landofcoder.com/magento-2-form-builder.html/)\n\n* [Magento 2 Reward Points](https://landofcoder.com/magento-2-reward-points.html/)\n\n* [Magento 2 Flash Sales - Private Sales](https://landofcoder.com/magento-2-flash-sale.html)\n\n* [Magento 2 B2B Packages](https://landofcoder.com/magento-2-b2b-extension-package.html)\n\n\n**Featured Magento Services**\n\n* [Hire Magento 2 Development Team](https://landofcoder.com/magento-2-create-online-store/)\n\n* [Dedicated Magento 2 Developer](https://landofcoder.com/magento-support-ticket.html/)\n\n* [Magento 2 Multi Vendor Development](https://landofcoder.com/magento-2-create-marketplace/)\n\n* [Magento Website Maintenance Service](https://landofcoder.com/magento-2-customization-service/)\n\n* [Magento Professional Installation Service](https://landofcoder.com/magento-2-installation-service.html)\n\n* [Customization Service](https://landofcoder.com/magento-customization-service.html)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flandofcoder%2Fmodule-seller-product-list","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flandofcoder%2Fmodule-seller-product-list","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flandofcoder%2Fmodule-seller-product-list/lists"}