How to construct an offer for the “ Ванны (Baths)” category

How to link an offer to a product profile

In order for the system to correlate your offer with the product profile on Yandex.Market, enter the following data for the offer:

  1. Manufacturer name.

  2. Name of the product model or line.

  3. Size (if there are several sizes available).

  4. Shape (if there are several shapes available).

  5. Configuration options, as specified by the manufacturer (you can also specify options).

    Note. If the configuration doesn't have a designation or configuration options, add a description of the configuration to the name.
Example

You want to place an offer with the following data:

  • Manufacturer: Balteco.

  • Line: Rhea.

  • Size: 15 (150 cm).

  • Configuration: S1 (normal bath without hydro massage).

The offer title in YML should look like this:

Simplified offer type
<vendor>Balteco</vendor>
<name>Balteco Rhea 15 Bath (S1)</name>
Custom offer type
<typePrefix>Bath</typePrefix>
<vendor>Balteco</vendor>
<model>Rhea 15 (S1)</model>
Note. Detailed description of offer types: simplified type, custom type.

How not to be filtered out

Filters are available on product profiles for this category of products. If the user applies filters, they will only see products that meet the selected parameters or characteristics.

Set the parameters in the corresponding offer elements to make sure that your products end up in the appropriate filtered results:

  • In the offer title.

  • In the param element, in the following form: <param name=" название параметра " unit=" единица измерения (если есть) "> значение </param>.

In the Ванны (Baths) category there is a filter for modifications (left-side or right-side orientation). Examples of passing a parameter in YML format:

<param name="Модификация">left-side</param>
<param name="Модификация">right</param>
<param name="Модификация">left</param>

Common mistakes

  1. Manufacturer name was omitted.

    Example
    <name>Continental Bath 170x70</name>

    Correct title for this offer:

    <vendor>Roca</vendor>
    <name>Ванна Roca Continental 170х70</name>
  2. Name of product model not specified.

    Example
    <vendor>Ravak</vendor>
    <name>Ravak 150 Bath</name>

    Correct title for this offer:

    <vendor>Ravak</vendor>
    <name>Ravak Avocado Bath 150</name>
  3. Size not specified.

    Example
    <vendor>Riho</vendor>
    <name>Riho Lyra Bath without hydro massage</name>

    Correct title for this offer:

    <vendor>Riho</vendor>
    <name>Riho Lyra Bath 140 without hydro massage</name>
  4. Configuration not specified.

    Example 1
    <vendor>Balteco</vendor>
    <name>Balteco Rhea 15 Bath</name>

    Correct names for this offer:

    <vendor>Balteco</vendor>
    <name>Balteco Rhea 15 Bath Aero (S2)</name>
    <vendor>Balteco</vendor>
    <name>Balteco Rhea 15 Bath Hydro (S3)</name>
    Example 2
    <vendor>Castalia</vendor>
    <name>Castalia Prime Bath 150x70x42</name>

    Correct names for this offer:

    <vendor>Castalia</vendor>
    <name>Castalia Prime Bath 150x70x42 with handles</name>
    <vendor>Castalia</vendor>
    <name>Castalia Prime Bath 150x70x42 without handles</name>

Examples of offers in YML

Custom product type (vendor.model)

<offer id="12341" type="vendor.model" available="true" bid="80" cbid="90">
  <url>http://best.seller.ru/product_page.asp?pid=12344</url>
  <price>13500</price>
  <oldprice>18000</oldprice>
  <currencyId>RUR</currencyId>
  <categoryId>6</categoryId>
  <picture>http://best.seller.ru/img/device12345.jpg</picture>
  <store>false</store>
  <pickup>false</pickup>
  
  
    <option cost="300" days="1" order-before="18" />
  
  <typePrefix>Bath</typePrefix>
  <vendor>BAS</vendor>
  <vendorCode>3628783</vendorCode>
  <model>Vectra 150x90 without hydro massage</model>
  <param name="Модификация">left</param> 
  <description> 
  <![CDATA[
    <p>This elegantly designed acrylic corner bathtub will make a tasteful addition to any bathroom.</p>
  ]]>
  </description>
  <sales_notes>Prepayment required.</sales_notes>
  <manufacturer_warranty>true</manufacturer_warranty>
  <country_of_origin>Russia</country_of_origin>
  <barcode>1234567890120</barcode>
  <rec>456,789</rec>
</offer>

Simplified offer type

<offer id="12346" available="true" bid="80" cbid="90">
  <url>http://best.seller.ru/product_page.asp?pid=12348</url>
  <price>13500</price>
  <oldprice>18000</oldprice>
  <currencyId>RUR</currencyId>
  <categoryId>6</categoryId>
  <picture>http://best.seller.ru/img/large_12348.jpg</picture>
  <store>false</store>
  <pickup>true</pickup>
  
  
    <option cost="300" days="0" order-before="12" />
  
  <name>BAS Vectra Bath 150x90 without hydro massage</name>
  <vendor>BAS</vendor>
  <vendorCode>A1234567B</vendorCode>
  <param name="Модификация">left</param>
  <description>
  <![CDATA[
    <p>This elegantly designed acrylic corner bathtub will make a tasteful addition to any bathroom.</p>
  ]]>
  </description>
  <sales_notes>Prepayment required.</sales_notes>
  <manufacturer_warranty>true</manufacturer_warranty>
  <country_of_origin>Russia</country_of_origin>
  <barcode>0123456789012</barcode>
  <rec>456,789</rec>
</offer>