Update category

Update an existing category in an Ecwid store referring to its ID.

Headers

NameTypeDescription
AuthorizationstringoAuth token with mandatory Bearer before it. Example: Bearer e***s0, where e***s0 should be replaced with your oAuth token.

Request

A JSON object of type 'Category' with the following fields:

Category

FieldTypeDescription
namestringCategory name
nameTranslated<Translations>Available translations for category name
parentIdnumberID of the parent category
orderBynumberSort order of the category in the parent category subcategories list with a step of 10, e.g. 10, 20, 30, etc.
descriptionstringThe category description in HTML
descriptionTranslated<Translations>Available translations for category description
enabledbooleantrue to make category enabled, false to disable it. true is default
productIdsArray<number>IDs of the products to assign to the category

Translations

FieldTypeDescription
<ISO_LANG_CODE>stringTranslations for each available language. If no other translations are provided, the default language translations is returned. See available languages in store language settings

Response

A JSON object of type 'UpdateStatus' with the following fields:

UpdateStatus

FieldTypeDescription
updateCountnumberThe number of updated categories (1 or 0 depending on whether the update was successful)

Errors

In case of error, Ecwid responds with an error HTTP status code and, optionally, JSON-formatted body containing error description

HTTP codes

HTTP StatusMeaning
400Malformed request parameters
400Category name must not be empty
404The parent category or one of the assigned products is not found
409There was a conflict modifying the store (updating a category while it's being edited elsewhere). Retry later.
415Unsupported content-type: expected application/json or text/json
449Store catalog cannot be modified at the moment because import is in progress. Retry later.
500Server error
Language