[NEWS] GPSR - umożliwiamy dodanie informacji o bezpieczeństwie produktu w postaci opisu tekstowego / GPSR - we allow you to add product safety information in the form of a text description
- Dominant language
- No language data
- Stars
- 244
- Forks
- 40
- PR merge metrics
- No merged PRs in 30d
Description
**13 grudnia 2024** zacznie obowiązywać nowe rozporządzenie Unii Europejskiej **[General Product Safety Regulation](https://commission.europa.eu/business-economy-euro/doing-business-eu/eu-product-safety-and-labelling/product-safety/general-product-safety-regulation_en)**. Jednym z jego elementów są załączniki, w których sprzedający powinien umieścić informacje z ostrzeżeniami o produkcie np. instrukcja produktu. Jeśli sprzedający nie ma instrukcji, może to być zdjęcie oznaczeń na opakowaniu produktu lub opis ostrzeżeń wpisany ręcznie. Ważne, aby załączniki były w języku urzędowym kraju, z którego jest kupujący. Zatem, jeśli sprzedający udostępnia swoją ofertę na wszystkie rynki Allegro, instrukcja powinna zawierać wersję polską, czeską, słowacką, czy węgierską.
**Jak było dotychczas?**
Informację o bezpieczeństwie produktu można było przekazać w:
* [POST /sale/product-offers](https://developer.allegro.pl/documentation/#operation/createProductOffers),
* [PATCH /sale/product-offers/{offerId}](https://developer.allegro.pl/documentation/#operation/editProductOffers)
w obiekcie "**productSet.[].safetyInformation**" z wykorzystaniem jednego z dwóch typów informacji:
* "**ATTACHMENTS**" - jeżeli dodajesz załączniki jako informacje o bezpieczeństwie produktu;
* “**NO_SAFETY_INFORMATION**” - jeśli deklarujesz, że produkt nie posiada informacji o bezpieczeństwie.
**Co zmieniliśmy?**
Od dzisiaj, informacje o bezpieczeństwie produktu możesz także przekazać w postaci opisu tekstowego (“**TEXT**”).
Opis tekstowy musi spełniać wymagania:
* dopuszczalna liczba znaków od 1 do 5000;
* nie obsługuje tagów HTML;
* dozwolone jest dodanie znaku nowej lini “\n”;
* zawiera informacje we wszystkich wymaganych językach w zależności od tego, w których serwisach oferta jest widoczna.
**Przykładowy request:**
```json5
{
"productSet": [
{
"safetyInformation": {
"type": "TEXT", // typ informacji, dostępne wartości: TEXT, ATTACHMENTS, NO_SAFETY_INFORMATION
"description": "To jest informacja o bezpieczeństwie produktu.\n
Jedná se o bezpečnostní informace o výrobku." // opis tekstowy, limit 1-5000 znaków
},
...
}
],
...
}
```
>
Pole “**safetyInformation**” aktualnie jest opcjonalne. W dniu **13.12.2024** oznaczymy je jako **obowiązkowe**.
**Dlaczego wprowadziliśmy zmianę?**
Wdrożyliśmy informacje o bezpieczeństwie produktu, aby dostosować Allegro do prawa Unii Europejskiej. GPSR, oprócz producentów, importerów, dystrybutorów, itd., nakłada nowe obowiązki na platformy internetowe umożliwiające sprzedaż na odległość. Platformy muszą dostosować i zorganizować swój interfejs w taki sposób, aby sprzedający mogli wypełnić swoje obowiązki wynikające z rozporządzenia.
-----
On **December 13, 2024**, the new European Union Regulation **[General Product Safety Regulation](https://commission.europa.eu/business-economy-euro/doing-business-eu/eu-product-safety-and-labelling/product-safety/general-product-safety-regulation_en)** will come into effect. One of its elements are attachments, in which the seller should include information with warnings about the product, such as product instructions. If the seller does not have a manual, it can be a photo of the product labelings or a manually entered description of the warnings. The attachments must be in the official language of the buyer's country. Therefore, if a seller offers their product on all Allegro markets, the manual should include Polish, Czech, Slovak, and Hungarian versions.
**How was it so far?**
Product safety information could be provided in:
* [POST /sale/product-offers](https://developer.allegro.pl/documentation/#operation/createProductOffers),
* [PATCH /sale/product-offers/{offerId}](https://developer.allegro.pl/documentation/#operation/editProductOffers)
in the “**productSet.[].safetyInformation**” object using one of two types of information:
* "**ATTACHMENTS**" - if you are adding attachments as product safety information;
* “**NO_SAFETY_INFORMATION**” - if you declare that the product has no safety information.
**What have we changed?**
Starting today, you can also provide information about the safety of your product in the form of a text description (“**TEXT**”).
The text description must meet the requirements:
* allowable number of characters from 1 to 5000;
* does not support HTML tags;
* the addition of a newline character “\n” is allowed;
* includes information in all required languages depending on which marketplaces the offer is visible.
**Sample request:**
```json5
{
"productSet": [
{
"safetyInformation": {
"type": "TEXT", // type of information, availables values: TEXT, ATTACHMENTS, NO_SAFETY_INFORMATION
"description": "This is a product safety information.\n
Jedná se o bezpečnostní informace o výrobku." // text description, limit 1-5000 characters
},
...
}
],
...
}
```
>
The “**safetyInformation**” field is currently optional. On **December 13, 2024**, we will mark it as **required**.
**Why have we made the change?**
We have implemented product safety information to align Allegro with European Union law. The GPSR, in addition to producers, importers, distributors, etc., imposes new obligations on online platforms that enable distance selling. Platforms must adjust and organize their interface in such a way that sellers can fulfill their obligations under the regulation.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.