# Update of article section Updates the article section. Endpoint: PATCH /api/articles/sections/{articleSectionId} Version: 1.0.0 Security: shoptetAccessToken, shoptetPrivateApiToken ## Path parameters: - `articleSectionId` (number, required) article section ID Example: "123" ## Header parameters: - `Content-Type` (string, required) ## Request fields (application/json): - `data` (object, required) - `data.title` (string) article section title - `data.language` (string) article section language - `data.indexName` (string,null) ending part of article section URL - `data.description` (string,null) article section content - `data.secondDescription` (string,null) article section second content - `data.limit` (number,null) Number of articles displayed in the listing - `data.homepageLimit` (number,null) Number of articles displayed on the homepage - `data.sorting` (any) Article sorting in the listing Enum: "alphabetically", "newest-first", "oldest-first" - `data.perexLimit` (number,null) Number of character displayed in the article perex - `data.hidePublishDate` (boolean) Hide article publish date in the listing - `data.showPrevNext` (boolean) Show next/previous buttons in the listing - `data.showOnHomepage` (boolean) Show articles on the homepage - `data.linkText` (string,null) Link text (in the menu) - `data.metaTitle` (string,null) article meta title - `data.metaDescription` (string,null) article meta description - `data.visible` (boolean) flag whether the article section is visible on web - `data.access` (any) flag indicating, whether the article section can be viewed by everyone (value of the flag is: ), by logged in users only ('logged-in'), or by logged out users only ('logged-out') Enum: "all", "logged-in", "logged-out" ## Response 200 fields (application/json): - `data` (object, required) - `data.article` (object, required) - `data.article.id` (number, required) article ID - `data.article.defaultSectionId` (number) article section ID - `data.article.sectionIds` (array,null) array of section IDs - `data.article.title` (string, required) article title - `data.article.language` (string, required) article language - `data.article.indexName` (string,null, required) ending part of article URL - `data.article.url` (string) article URL - `data.article.urls` (array) array of section IDs and their URLs - `data.article.urls.sectionId` (number, required) article section ID - `data.article.redirectUrl` (string,null, required) canonical URL for redirecting - `data.article.content` (string,null, required) article content - `data.article.metaTitle` (string,null, required) article meta title - `data.article.metaDescription` (string,null, required) article meta description - `data.article.publishDate` (string,null, required) article date of publishing - `data.article.changeDate` (string,null, required) article date of the last modification - `data.article.visible` (boolean, required) flag whether the article is visible on web - `data.article.access` (any, required) flag indicating, whether the article can be viewed by everyone (value of the flag is: ), by logged in users only ('logged-in'), or by logged out users only ('logged-out') Enum: "all", "logged-in", "logged-out" - `data.article.image` (string,null) article image - `data.article.ogImage` (string,null) article og:image - `data.article.metaKeywords` (string,null, required) article keywords - `errors` (array,null, required) - `errors.errorCode` (string, required) Short text error identification - `errors.message` (string, required) Descriptive error message - `errors.instance` (string, required) Identification of the entity referenced ## Response 404 fields (application/json): - `data` (object,null) - `errors` (array,null) - `errors.errorCode` (string, required) Short text error identification - `errors.message` (string, required) Descriptive error message - `errors.instance` (string, required) Identification of the entity referenced