🛠️ Overview: Learn how to use the SDK to delete a product. This guide provides step-by-step instructions and code examples for safe product removal.

  1. Initialization
    ⚙️ Ensure your SDK is properly initialized with the necessary credentials.

    delete_product_initialization
  2. Authentication
    🔐 Use the deleteProduct method with a valid API token.

    delete_product_authentication
  3. Request Parameters
    📋 Required: product_id. Optional: soft_delete (default: false).

    delete_product_parameters
  4. Code Example
    💻

    sdk.deleteProduct(product_id="12345", soft_delete=True)
    
    delete_product_code_flow

For more details, refer to our Product Management Guide.
📌 Note: Always verify data before deletion to avoid accidental loss.