FR - Parcel Shop Delivery
FR - Parcel Shop Delivery
What is Parcel Shop Delivery?
Parcel shop delivery offers a convenient option for receiving parcels. Instead of having packages delivered directly to your home or workplace, they are sent to a nearby designated parcel shop, allowing you to pick them up at your convenience.
Differences Between Parcel Shop Delivery and Home Delivery
The primary distinction between parcel shop delivery and home delivery lies in the location where the parcel is received:
- Parcel Shop Delivery: The recipient collects their parcel from a designated parcel shop or collection point.
- Home Delivery: The parcel is delivered directly to the recipient's home address.
Availability of Parcel Shop Delivery
Country: Currently, parcel shop delivery is available for orders shipping to France.
Carrier: Mondial Relay.
Sales Channels: To determine if parcel shop delivery is supported, consult the support team of your e-commerce platform (e.g., ManoMano FR, Cdiscount FR).
Self-built Websites: Integration with the Mondial Relay API and appropriate configuration settings are required.
Finding Products Eligible for Parcel Shop Delivery
To find products eligible for parcel shop delivery, download the relevant file. Upon opening the file, you can check the 'parcel shop eligibility' and 'parcel shop type' for each SKU. For example:
id |
parcel_shop_eligibility |
parcel_shop_type |
371156 |
Y |
["24L","24R"] |
Placing Orders for Parcel Shop Delivery
- Shopping cart:
- In the shopping cart, choose 'Parcelshop Delivery'.
- Fill in the parcel shop ID and parcel shop name on the checkout page.
- Order file import: Add parcel id in the 'parcelshop_point_id' field and add parcel shop name in the 'parcelshop_point_name' field when import the file
- API: Add parcel shop ID and parcel shop name in the request body
{
"customer_order_reference": "parcelshoptest",
"comments_customer": "",
"extra_fields": {
"parcelshop_point_id": "12345",
"parcelshop_point_name": "Parcelshop name"
},
"addressbook": {
"country": "FR"
},
"order_products": [
{
"product_code": "99999",
"quantity": 1,
"addressbook": {
"address": "93 4 Test",
"address2": "",
"city": "Test",
"province": "Test",
"postal_code": "10000",
"country": "FR",
"name": "Test",
"phone": "06123456",
"comments": ""
}
}
]
}
This ensures your order will be delivered to your selected parcel shop for easy pickup.