Bulk Product Update

Update multiple products at once using JSON format

How to Use

  1. Prepare your product data in JSON format (see example below)
  2. Each product must have an id field
  3. Only include fields you want to update (other fields will remain unchanged)
  4. Paste the JSON into the text area below
  5. Click "Update Products" to apply changes

Example Format

[
  {
    "id": 3,
    "name": "Arewa Nourishing Facial Oil",
    "slug": "arewa-nourishing-facial-oil-30ml",
    "description": "A luxurious blend of 11 organic oils...",
    "ingredients": "Jojoba Oil, Argan Oil, Sea Buckthorn...",
    "imageUrl": "https://example.com/image.jpg",
    "imageGallery": ["https://example.com/img1.jpg", "https://example.com/img2.jpg"],
    "price": 50.00,
    "size": "30ml",
    "category": "Serums & Boosters"
  },
  {
    "id": 4,
    "name": "Another Product",
    "description": "Updated description..."
  }
]

Paste Your JSON Data

⚠️ Important Notes

  • Changes are permanent and cannot be undone
  • Make sure your JSON is valid before submitting
  • Product IDs must match existing products in the database
  • Image gallery must be an array of URLs
  • Price should be a number (e.g., 50.00, not "£50.00")