# Articles Managing articles in the e-shop. ## List of articles - [GET /api/articles](https://api.docs.shoptet.com/shoptet-api/openapi/articles/getlistofarticles.md): Returns a list of articles with basic info. Supports Paging ## Insert of article - [POST /api/articles](https://api.docs.shoptet.com/shoptet-api/openapi/articles/createarticle.md): Creates a new article. ## List of all articles - [GET /api/articles/snapshot](https://api.docs.shoptet.com/shoptet-api/openapi/articles/getlistallarticles.md): Using this endpoint, you can get list of all articles with detailed info of each article (like in Detail of article endpoint) asynchronously. See how Asynchronous requests work on our developer's portal. Response will be in jsonlines format with each product taking one line of output file. One article in response has the same format as article detail response. Result file is compressed using GZIP. ## Detail of article - [GET /api/articles/{articleId}](https://api.docs.shoptet.com/shoptet-api/openapi/articles/getdetailofarticle.md): Returns a detail of the article. ## Update of article - [PATCH /api/articles/{articleId}](https://api.docs.shoptet.com/shoptet-api/openapi/articles/updatearticle.md): Updates the article. ## Delete of article - [DELETE /api/articles/{articleId}](https://api.docs.shoptet.com/shoptet-api/openapi/articles/deletearticle.md): Deletes the article. ## List of article sections - [GET /api/articles/sections](https://api.docs.shoptet.com/shoptet-api/openapi/articles/getlistofarticlesections.md): Returns a list of article sections. ## Insert of article section - [POST /api/articles/sections](https://api.docs.shoptet.com/shoptet-api/openapi/articles/createarticlesection.md): Creates a new article section. ## Detail of article section - [GET /api/articles/sections/{articleSectionId}](https://api.docs.shoptet.com/shoptet-api/openapi/articles/getdetailofarticlesection.md): Returns a detail of the article section. ## Update of article section - [PATCH /api/articles/sections/{articleSectionId}](https://api.docs.shoptet.com/shoptet-api/openapi/articles/updatearticlesection.md): Updates the article section. ## Deletion of article section - [DELETE /api/articles/sections/{articleSectionId}](https://api.docs.shoptet.com/shoptet-api/openapi/articles/deletearticlesection.md): If the article section cannot be deleted, because it contains article(s), a 409 code is returned. Optional parameter with value allows deletion of article section including permanent deletion of article(s) having this section set as default.