Rupa Rawi - Revou Group Project
  1. product
Rupa Rawi - Revou Group Project
  • auth
    • register user
      POST
    • login
      POST
    • refresh token
      POST
  • user
    • address
      • create address
      • get all address
      • update address
      • delete address
    • payment method
      • get all payment methods
      • delete payment method
      • update payment method
      • create payment method
    • update own profile
      PUT
    • get own profile
      GET
    • get public profile
      GET
  • product
    • category
      • get categories tree
      • get categories detail
    • wishlist
      • add item to wishlist
      • remove item to wishlist
      • get wishlist
    • promotions
      • get promotion detail (public)
      • get active promotions (public)
    • get product details (public)
      GET
    • get product list (public)
      GET
    • get public vendor products
      GET
  • admin
    • category
      • create category
      • update category
      • soft delete category
      • create subcategory
    • vendor management
      • get all vendors
      • vendor application review
    • promotions
      • get all promotions
      • create promotion
      • update promotion
    • get admin logs
      GET
  • vendor
    • product
      • soft delete product
      • create product
      • update product
      • get vendor products
    • vendor apply
      POST
    • get vendor profile
      GET
    • update vendor profile
      PUT
    • vendor stats
      GET
    • Vendor recent orders
      GET
  • order
    • cart
      • add item to cart
      • update item in cart
      • delete item in cart
      • get cart
    • update order status
    • get order
    • get all orders
    • pre-checkout calculation
    • order checkout
  • article
    • delete article
    • create article
    • get article
    • get article detail
    • update article
  • product review
    • create review product
    • get product reviews by product id
    • get product review detail
    • update product review detail
    • delete product review
  • testimony
    • create testimonial
    • update testimonial
    • get testimonial
    • delete testimonial
  1. product

get public vendor products

Developing
GET
/products/public-vendor-products
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/products/public-vendor-products?category_name=Woman-Clothes&business_name=Enclosure' \
--header 'Authorization: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJmcmVzaCI6ZmFsc2UsImlhdCI6MTc0NjYzOTkyOSwianRpIjoiZDhmMDY3ODMtMTUwOS00NGIxLTg4MmEtZTgyODNkODM4ZTBjIiwidHlwZSI6ImFjY2VzcyIsInN1YiI6IjciLCJuYmYiOjE3NDY2Mzk5MjksImNzcmYiOiJlZTBiNGI3MC0yMjJlLTQ4YWMtOTc5Ni1kZGZhMzAyYTljYTgiLCJ1c2VybmFtZSI6Imd1bnR1cl93aXJheXVkYSIsImVtYWlsIjoiZ29uZXRvZXIyNEBnbWFpbC5jb20ifQ.lNbILZUrHWK-6bkX_XEpHbm4Qd-NTz4eaDpsfsUSaDM' \
--header 'Content-Type: application/json' \
--data-raw '{}'
Response Response Example
{
  "products": [
    {
      "average_rating": 0.0,
      "category_id": 4,
      "created_at": "Sun, 04 May 2025 07:09:21 GMT",
      "description": "A dream piece kebaya in vibrant red, romanticized with delicate embroidery from our \u201cTimun Mas\u201d collection.",
      "id": 12,
      "images": [
        {
          "image_url": "https://sejauh.com/cdn/shop/files/tullewijiaruna1.jpg?v=1737348836&width=1540",
          "is_primary": true
        }
      ],
      "is_active": true,
      "min_order_quantity": 1,
      "name": "\"Wiji Aruna\" - Kebaya Tulle",
      "price": 5750000.0,
      "review_count": 0,
      "stock_quantity": 50,
      "sustainability_attributes": [
        "test"
      ],
      "tags": [
        "test"
      ],
      "updated_at": "Sun, 04 May 2025 07:09:21 GMT",
      "vendor_id": 7
    },
    {
      "average_rating": 3.5,
      "category_id": 4,
      "created_at": "Sun, 27 Apr 2025 14:16:43 GMT",
      "description": "This product is using TENCEL\u2122 fabric, Lyocell fibers which are produced from an ethically-responsible sourced natural raw material wood. This capsule collection offers you breathable and gentle on skin fabrics.",
      "id": 2,
      "images": [
        {
          "image_url": "https://sejauh.com/cdn/shop/files/SEJAUH0967-1.jpg?v=1741603515&width=1540",
          "is_primary": true
        }
      ],
      "is_active": true,
      "min_order_quantity": 1,
      "name": "\"Tenun Ombak Laut\" - Baju Santai",
      "price": 3100000.0,
      "review_count": 2,
      "stock_quantity": 98,
      "sustainability_attributes": [
        "organic",
        "carbon-neutral"
      ],
      "tags": [
        "cheap",
        "handmade"
      ],
      "updated_at": "Wed, 07 May 2025 15:50:23 GMT",
      "vendor_id": 7
    },
    {
      "average_rating": 0.0,
      "category_id": 4,
      "created_at": "Wed, 07 May 2025 22:24:14 GMT",
      "description": "Experience a bold innovation that transforms a classic kebaya silhouette into a striking fashion piece. Accentuated with two long drapes at the front and stylish slits at the sleeves, it embodies true sophistication with a modern twist on classic style. \nThis piece artfully blends Sejauh\u2019s unique motifs with Eko\u2019s imaginative sci-fi vision.  ",
      "id": 7,
      "images": [
        {
          "image_url": "https://sejauh.com/cdn/shop/files/SEJAUH1024-1.jpg?v=1741588890&width=1540",
          "is_primary": true
        }
      ],
      "is_active": true,
      "min_order_quantity": 1,
      "name": "\"Rupa Rawi x Eko Nugroho\" Kebaya Saras",
      "price": 2250000.0,
      "review_count": 0,
      "stock_quantity": 5,
      "sustainability_attributes": [],
      "tags": [],
      "updated_at": "Wed, 07 May 2025 14:54:47 GMT",
      "vendor_id": 7
    }
  ],
  "success": true
}

Request

Query Params
category_name
string 
required
Example:
Woman-Clothes
business_name
string 
required
Example:
Enclosure
Header Params
Authorization
string 
required
Example:
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJmcmVzaCI6ZmFsc2UsImlhdCI6MTc0NjYzOTkyOSwianRpIjoiZDhmMDY3ODMtMTUwOS00NGIxLTg4MmEtZTgyODNkODM4ZTBjIiwidHlwZSI6ImFjY2VzcyIsInN1YiI6IjciLCJuYmYiOjE3NDY2Mzk5MjksImNzcmYiOiJlZTBiNGI3MC0yMjJlLTQ4YWMtOTc5Ni1kZGZhMzAyYTljYTgiLCJ1c2VybmFtZSI6Imd1bnR1cl93aXJheXVkYSIsImVtYWlsIjoiZ29uZXRvZXIyNEBnbWFpbC5jb20ifQ.lNbILZUrHWK-6bkX_XEpHbm4Qd-NTz4eaDpsfsUSaDM
Body Params application/json
object {0}
Examples

Responses

🟢200Success
application/json
Body
products
array [object {16}] 
required
average_rating
integer  | number 
required
category_id
integer 
required
created_at
string 
required
description
string 
required
id
integer 
required
images
array [object {2}] 
required
is_active
boolean 
required
min_order_quantity
integer 
required
name
string 
required
price
integer 
required
review_count
integer 
required
stock_quantity
integer 
required
sustainability_attributes
array[string]
required
tags
array[string]
required
updated_at
string 
required
vendor_id
integer 
required
success
boolean 
required
Modified at 2025-05-07 17:55:40
Previous
get product list (public)
Next
create category
Built with