> ## Documentation Index
> Fetch the complete documentation index at: https://docs-kfhye.zochil.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Update marketplace product

> Update an existing marketplace product



## OpenAPI

````yaml docs/api-reference/marketplace-monitoring.yaml post /marketplace-products/update
openapi: 3.0.3
info:
  title: Zochil Marketplace Monitoring API
  description: >
    Zochil platform marketplace monitoring API for marketplace administration.


    ## Authentication


    All endpoints require authentication via the `access-token` header obtained
    through login.

    Some endpoints may also require `merchant-id` header for merchant-specific
    operations.
  version: 1.0.0
  contact:
    name: Zochil Support
    email: info@zochil.mn
  license:
    name: Proprietary
servers:
  - url: https://api.zochil.io/v3/monitoring
    description: API server
security:
  - AccessToken: []
tags:
  - name: Authentication
    description: Marketplace admin authentication
  - name: Marketplace Admins
    description: Marketplace administrator management
  - name: Marketplaces
    description: Marketplace management and configuration
  - name: Categories
    description: Product category management
  - name: Products
    description: Product catalog management
  - name: Orders
    description: Order processing and management
  - name: Merchants
    description: Merchant account management
  - name: Users
    description: User account management
  - name: Banners
    description: Marketing banner management
  - name: Campaigns
    description: Marketing campaign management
  - name: Subscriptions
    description: Marketplace subscription management
  - name: Menu Categories
    description: Main menu category management
  - name: Notifications
    description: Notification management
  - name: Shipments
    description: Shipment and logistics management
  - name: Shipment Invoices
    description: Shipment invoice management
  - name: Preorder Admin Users
    description: Preorder admin user management with PIN authentication
  - name: Reporting
    description: Reporting and analytics
  - name: Profile
    description: Admin profile management
paths:
  /marketplace-products/update:
    post:
      tags:
        - Products
      summary: Update marketplace product
      description: Update an existing marketplace product
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateProductRequest'
      responses:
        '200':
          description: Product updated successfully
components:
  schemas:
    UpdateProductRequest:
      type: object
      required:
        - id
      properties:
        id:
          type: string
        name:
          type: string
        sku:
          type: string
        status:
          type: string
        category_id:
          type: string
        image:
          type: string
        price:
          type: number
        sale_price:
          type: number
        wholesale_price:
          type: number
        description:
          type: string
        images:
          type: array
          items:
            type: string
        featured:
          type: boolean
        stock:
          type: integer
        bundle_size:
          type: integer
        all_options:
          type: array
          items:
            type: object
        has_delivery:
          type: boolean
        has_inventory:
          type: boolean
        brand_id:
          type: string
        categories:
          type: array
          items:
            type: string
        short_description:
          type: string
        video_url:
          type: string
        main_category_codes:
          type: array
          items:
            type: string
        specs:
          type: array
          items:
            type: object
        instagram_posts:
          type: array
          items:
            type: object
        banner:
          type: string
        event_id:
          type: string
        is_ticket:
          type: boolean
        banner_description:
          type: string
        main_category_id:
          type: string
        main_category_ids:
          type: array
          items:
            type: string
        product_video_url:
          type: string
        ticket_custom_url:
          type: string
        hide_price:
          type: boolean
        source:
          type: string
        product_type:
          type: string
        shipment_duration:
          type: string
        product_weight:
          type: number
        extra:
          type: object
        list_preorder_marketplace:
          type: boolean
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token

````