delivery, pickup, store
The delivery
, pickup
, and store
elements allow you to indicate for each product:
If it can be delivered.
If it can be picked up.
If it can be purchased without placing a pre-order.
Before you start using the delivery
, pickup
, and store
elements:
For all offers, Yandex.Market shows the delivery, pickup, and purchase without a pre-order options, if you have points of sale created in your personal account.
For all offers Yandex.Market shows only the delivery option if you have no points of sale created in your personal account.
Element description
delivery
— delivery option-
Use the
delivery
element to indicate if the product can be delivered to the customer address in the store's region. Possible values:true
— the store delivers the product to the customer address.false
— the store does not deliver the product to the customer address.
pickup
— pickup option-
Use the
pickup
element to indicate if the product can be received at the pick-up points. Possible values:true
— the customer can pick up the product at one of the store's pick-up points.false
— the product is not available for pickup.
store
— purchase without a pre-order (“at a point of sale”)-
Use the
store
element to indicate if the product can be purchased without placing a pre-order at points of sale (showrooms with window display). Possible values:true
— the product can be purchased “at a point of sale” without a pre-order.false
— a pre-order is a must.
Default values
If the elements are not included in the price list, the default value is used:
The
delivery
element defaults totrue
.The
store
orpickup
element defaults totrue
if you specify a retail location (showroom or pick-up point) in your personal account.
Points of sale in your personal account and use of elements
If you use the
store
orpickup
element set totrue
, make sure you have points of sale created in your personal account. Otherwise, an error will be returned when the price list is verified.If you have a point of sale of the combined type (a showroom combined with a pick-up point), the pickup and purchase without a pre-order options are set for products by default.
If a particular product is not available for pickup or purchase without placing a pre-order, make sure you specify the
false
value not only for thepickup
but also for thestore
element.
Using the delivery
element for products that are not allowed to be sold remotely
delivery
element must always be false
for such products as jewelry and medicines (this means that these products cannot be sold remotely or delivered; they can only be purchased directly in the store). If your store is not registered as a legal entity in Russia, you should not place on Yandex.Market any products that are not allowed to be sold remotely in Russia.Usage examples
- Example 1
-
The product can be collected at a pick-up point.
You can order a courier delivery service.
The product cannot be purchased “at a point of sale” without placing a pre-order.
<offer> ... <price>700</price> <currencyId>USD</currencyId> <categoryId>6</categoryId> <picture>http://best.seller.ru/img/device12345.jpg</picture> <delivery>true</delivery> <pickup>true</pickup> <store>false</store> <vendor>Sony Ericsson</vendor> <model>Xperia arc</model> ... </offer>
- Example 2
-
You can order a courier delivery service.
The product cannot be purchased “at a point of sale” without placing a pre-order.
The product cannot be collected at a pick-up point.
<offer> ... <price>650</price> <currencyId>USD</currencyId> <categoryId>6</categoryId> <picture>http://best.seller.ru/img/device12345.jpg</picture> <delivery>true</delivery> <pickup>false</pickup> <store>false</store> <vendor>Sony Ericsson</vendor> <model>Xperia arc</model> ... </offer>