Skip to main content

Is it possible to bulk edit attribute labels?

Lucien Berkani avatar
Written by Lucien Berkani
Updated over 3 weeks ago

It's not possible to do this from the PIM interface, but you can use the APIs:

First, retrieve all your attributes :

GET /api/attributes

Then loop on the results to update each attribute :

PUT /api/attributes/{id}

With a body similar to :

{
"name": {
"fr-FR": "test_fr",
"en-US": "test_en"
}
}

More on the attributes API here : https://docs.quable.com/reference/putattributesitem

Did this answer your question?