# Discussions Managing discussions in the e-shop. ## List of discussion posts - [GET /api/discussions-posts](https://api.docs.shoptet.com/shoptet-api/openapi/discussions/getlistofdiscussionposts.md): List of discussion posts, filterable by product GUID, article ID, page ID, customer GUID, author's e-mail, and creation date. Requires "discussion" module to be active. ## Creation of discussion posts - [POST /api/discussions-posts](https://api.docs.shoptet.com/shoptet-api/openapi/discussions/creatediscussionposts.md): Allows the creation of multiple discussion posts at once. The limit of items per request is defined to 100. Discussions can be created for: products, articles, and pages. Requires "discussion" module to be active. Request is processing all the items. If there are some errors in item definitions, only these items are skipped and summarized in response errors. Valid items are processed even if some error items are skipped. If at least one item is processed successfully, the response code is 201. If all the items contain errors, the response code is 400. If basic validation of items fails, the response code is 422 and the request is not processed. ## Discussion post update - [PATCH /api/discussions-posts/{id}](https://api.docs.shoptet.com/shoptet-api/openapi/discussions/updatediscussionpost.md): Updates discussion post's data. Requires "discussion" module to be active. ## Removal of discussion post - [DELETE /api/discussions-posts/{id}](https://api.docs.shoptet.com/shoptet-api/openapi/discussions/deletediscussionbyid.md): Deletes discussion post. Requires "discussion" module to be active.