Skip to content

[NEWS] GPSR - umożliwiamy określenie osoby odpowiedzialnej za zgodność produktu z przepisami unijnymi dla każdego produktu w zestawie / GPSR - we make it possible to specify the responsible person for the compliance of the product with EU regulations for each product in the set #10492

Open
@MaciejFrackowiak

Description

13 grudnia 2024 zacznie obowiązywać nowe rozporządzenie Unii Europejskiej General Product Safety Regulation. Celem GPSR jest pokazanie kupującemu, skąd pochodzi produkt, który może kupić na Allegro.

Jak było dotychczas?

Osobę odpowiedzialną za zgodność produktu z przepisami unijnymi można było przypisać do ofert korzystając z POST /sale/product-offers podczas tworzenia oferty oraz PATCH /sale/product-offers/{offerId} przy jej edycji tylko do pierwszego produktu (productSet.[0].responsiblePerson) w zestawie (productSet).

Co zmieniliśmy?

Dzisiaj umożliwiliśmy przypisanie osoby odpowiedzialnej za zgodność produktu z przepisami unijnymi dla każdego produktu (productSet.[].responsiblePerson) w zestawie (productSet).

Przykładowy request:

curl -X PATCH \
'https://api.allegro.pl/sale/product-offers/7776506218' \
-H 'Authorization: Bearer {token}' \
-H 'Accept: application/vnd.allegro.public.v1+json' \
-H 'Content-Type: application/vnd.allegro.public.v1+json' \
-d '{
	"productSet": [
    	   {
        	 "responsiblePerson": {
            	   "id": "570c928f-39ac-4838-93bb-eb829bc2136f"
        	 },
                 ...
    	   },
    	   {
        	 "responsiblePerson": {
            	   "id": "33960380-98fe-4b3d-b69e-b261526f2730"
        	 },
                 ...
    	   }
	]
	...
}'

Dlaczego wprowadziliśmy zmianę?

Zależy nam, aby sprzedający mogli w możliwie najwygodniejszy dla siebie sposób uzupełnić oferty osobami odpowiedzialnymi za zgodność produktu z przepisami unijnymi, które z dniem 13 grudnia 2024 będą wymagane zgodnie z rozporządzeniem GPSR.


On December 13, 2024, the new European Union Regulation General Product Safety Regulation will come into effect. The goal of the GPSR is to show the buyer where the product available on Allegro originates.

How was it so far?

The responsible person for the compliance of the product with EU regulations could be assigned to offers using POST /sale/product-offers when creating an offer and PATCH /sale/product-offers/{offerId} when editing it only to the first product (productSet.[0].responsiblePerson) in the set (productSet).

What have we changed?

Today, we have made it possible to assign a responsible person for the compliance of the product with EU regulations for each product (productSet.[].responsiblePerson) in a set (productSet).

Sample request:

curl -X PATCH \
'https://api.allegro.pl/sale/product-offers/7776506218' \
-H 'Authorization: Bearer {token}' \
-H 'Accept: application/vnd.allegro.public.v1+json' \
-H 'Content-Type: application/vnd.allegro.public.v1+json' \
-d '{
	"productSet": [
    	   {
        	 "responsiblePerson": {
            	   "id": "570c928f-39ac-4838-93bb-eb829bc2136f"
        	 },
	         ...
    	   },
    	   {
        	 "responsiblePerson": {
            	   "id": "33960380-98fe-4b3d-b69e-b261526f2730"
        	 },
		 ...			 
    	   }
	]
	...
}'

Why have we made the change?

We want sellers to be able to complete their offers as conveniently as possible with the responsible persons for the compliance of the product with EU regulations, which will be required under the GPSR regulation as of December 13, 2024.

Metadata

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions