Skip to content

Product_Insert#


Description#

This function allows you to insert a product.

Request Body Parameters#

Parameter
Type Description
product_code String Product Code of the product to Insert. This is a unique value in Miva.
product_sku String Product SKU of the product to insert. This is usually a unique value although Miva does not enforce unique values on the SKU field like it does for the Product Code.
product_name String Product Name
product_description String Product Description. Full HTML description allowed.
product_canonical_category_code String The canonical category is used to populate the breadcrumbs and category tree when no category code is present.
product_alternate_display_page String Alternate Page template to use when rendering this product
product_page_title String The Title Tag for this product.
product_thumbnail String Product Thumbnail. This field is depreciated. Images should be uploaded using ProductImage_Add
product_image String Product Full size image. This field is depreciated. Images should be uploaded using ProductImage_Add
product_price Number Product Price. This is the price the product will be purchased at.
product_cost Number Product Cost. Used for reporting and certain types of discounts (markup from cost)
product_weight Number Product Weight
product_Inventory Number Current inventory count available for the product. Updating this value does not take into account stock held in open baskets
product_taxable Boolean true or false value depending on if a product is taxable.
product_active Boolean true or false value depending on if a product is active. Important: If a value is omitted, the behavior will default to active.
customfield_values Object An object containing a customfields object with custom order fields to update. See examples.

Response Parameters#

Name Description
success boolean value for if the request was successful

Example Request#

{
    "Store_code": "beta",
    "Function": "Product_Insert",
    "Product_Code": "new-product",
    "Product_SKU": "555182",
    "Product_Name": "Hello WOrld",
    "Product_Description": "ddddd",
    "Product_Alternate_Display_Page": "",
    "Product_Page_Title": "eeeee",
    "Product_Thumbnail": "graphics/00000001/someimage_thumbnail.jpg",
    "Product_Image": "graphics/00000001/someimage.jpg",
    "Product_Price": 5.29,
    "Product_Cost": 1.27,
    "Product_Weight": 3.58,
    "Product_Inventory": 26,
    "Product_Taxable": true,
    "Product_Active": true,
    "CustomField_Values": {
        "cmp-cssui-pchdft": {
            "header": "",
            "footer": ""
        },
        "cmp-mv-prodctgy-meta": {
            "keywords": "",
            "description": ""
        },
        "upsxml": {
            "ups_additional_handling": "No",
            "ups_delivery_confirmation": "Default",
            "ups_fpackage": "",
            "ups_fclass": "",
            "ups_fnmfccom": "",
            "ups_fnmfcsubcm": "",
            "ups_fdanger": "0",
            "ups_fdangermod": "0",
            "hscode": "",
            "origcntry": ""
        },
        "baskinv": {
            "basket_inv": "0",
            "total_inv": ""
        },
        "combofacets": {
            "fitment": [],
            "second": []
        },
        "customfields": {
            "checkbox_CUSTOMFIELD_CODE": true,
            "imageupload_CUSTOMFIELD_CODE": "graphics/en-US/somecustomfieldimage.jpg",
            "text_CUSTOMFIELD_CODE": "fffff",
            "textarea_CUSTOMFIELD_CODE": "ggggg",
            "dropdown_CUSTOMFIELD_CODE": "bbbbb",
            "multitext_CUSTOMFIELD_CODE": ["hhhhh", "iiiii"]
        },
        "marketplaces": {
            "googleshopping_item_id": "",
            "googleshopping_title": "",
            "googleshopping_condition": "",
            "googleshopping_availability": "",
            "googleshopping_description": "",
            "googleshopping_product_category": "",
            "googleshopping_item_number": "",
            "googleshopping_part_number": "",
            "googleshopping_brand": "",
            "googleshopping_weight": "",
            "googleshopping_sale_price": "",
            "googleshopping_product_type": "",
            "googleshopping_expiration_date": "",
            "googleshopping_color": "",
            "googleshopping_material": "",
            "googleshopping_pattern": "",
            "googleshopping_gender": "",
            "googleshopping_age_group": "",
            "googleshopping_item_size": "",
            "googleshopping_size_type": "",
            "googleshopping_size_system": "",
            "googleshopping_adwords_redirect_url": "",
            "googleshopping_multipack": "",
            "googleshopping_is_bundled": "",
            "googleshopping_adult_product": "",
            "googleshopping_custom_0": "",
            "googleshopping_custom_1": "",
            "googleshopping_custom_2": "",
            "googleshopping_custom_3": "",
            "googleshopping_custom_4": "",
            "googleshopping_unit_value": "",
            "googleshopping_unit": "",
            "googleshopping_base_value": "",
            "googleshopping_base_unit": "",
            "googleshopping_ignore_product": "",
            "googleshopping_shipping_label": "",
            "googleshopping_gtin": ""
        },
        "productdigitaldownloadcustomfields": {
            "enabled": "No",
            "max_dl": "Global",
            "expiration": "Global",
            "cdn_name": "",
            "miva_path": "",
            "miva_name": "",
            "bucket": "",
            "file": "",
            "region": ""
        },
        "productimagecustomfields": {
            "main": "graphics/00000001/1/ny__gift-card--main.png",
            "back": ""
        },
        "productdata": {
            "data_field_code": "0"
        }
    }
}

Example Response#

{
    "success": 1,
    "data": {
        "id": 4,
        "code": "Hello_world",
        "sku": "555182",
        "name": "Hello World",
        "thumbnail": "graphics/00000001/someimage_thumbnail.jpg",
        "image": "graphics/00000001/someimage.jpg",
        "price": 5.29,
        "formatted_price": "$5.29",
        "cost": 1.27,
        "formatted_cost": "$1.27",
        "descrip": "ddddd",
        "weight": 3.58,
        "taxable": true,
        "active": true,
        "page_title": "eeeee",
        "dt_created": 1664305661,
        "dt_Updated": 1664305661
    }
}

Error Responses#

Error Code Error Message Error Description
MER-JSN-00018 Invalid value for field ‘Product_Code’: A product with the code ‘new-product’ already exists