Ürün Oluşturma

Ürün Oluşturma

Ürünleriniz JBUYTR sistemine yüklenirken bu metod kullanılmaktadır.

  • Bu method ile ürün aktarımı sağlanmadan önce JBUYTR Marka Liste ve Kategori/Kategori Özellik bilgileri servisleri üzerinden ilgili detaylar alınmalıdır.
Metot Tipi: POST
https://jbuytr.com/public/v1/product/create
Örnek istek
curl -X POST https://jbuytr.com/public/v1/product/create \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
    "name": "Sample Product",
    "category_ids": [1, 2],
    "category_id": 1,
    "unit": "kg",
    "min_qty": 1,
    "unit_price": 99.99,
    "discount_type": "amount",
    "discount": 10.00,
    "current_stock": 100,
    "starting_bid": 1,
    "auction_date_range": "2024-09-01 to 2024-09-10",
    "video_file": null,
    "tax_id": 1,
    "tax": 18,
    "tax_type": "percent",
    "colors_active": true,
    "colors": ["red", "blue"],
    "choice_no": 1,
    "sku": "PROD-001",
    "frequently_brought_selection_type": "category",
    "fq_brought_product_ids": [3, 4],
    "fq_brought_product_category_id": 2,
    "description": "This is a sample product."
}'