# So entliked man ein Thema oder einen Beitrag

**URL:** https://meta.discourse.org/t/how-to-unlike-a-topic-or-post/311733
**Category:** Development
**Tags:** rest-api
**Created:** [12. Juni 2024 um 11:02 UTC](https://meta.discourse.org/t/how-to-unlike-a-topic-or-post/311733 "2024-06-12T11:02:01Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![Arkshine](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/arkshine/32/298682_2.png) [@Arkshine](https://meta.discourse.org/u/Arkshine)
#### Post date: [13. Juni 2024 um 10:26 UTC](https://meta.discourse.org/t/how-to-unlike-a-topic-or-post/311733/3 "2024-06-13T10:26:01Z")

</div>

Hier ist eine Anleitung, die Ihnen in dieser Situation helfen wird:

> [@Reverse engineer the Discourse API](https://meta.discourse.org/t/reverse-engineer-the-discourse-api/20576):
>
> Discourse is backed by a complete JSON api. Anything you can do on the site you can also do using the JSON api. Many of the endpoints are properly documented in the [discourse\_api](https://github.com/discourse/discourse_api) gem, however some endpoints lack documentation. To determine how to do something with the JSON API here are some steps you can follow. Example: recategorize a topic. Go to a topic and start editing a category: Open Chrome dev tools, switch to the Network tab, select XHR filter: Perform the op…

Wenn Sie sich das Netzwerk des Browsers ansehen, können Sie die Anfrage sehen, die beim Aufheben des „Gefällt mir“-Vorgangs gestellt wird:

 ![image](https://global.discourse-cdn.com/meta/original/4X/0/4/a/04a6d22dc450ef86a85a1793cfe9e3000412bdc1.png)

`DELETE /post_actions/<post_id>` 👍

* * *

Die `action_summary`-IDs stellen die Aktionen auf dem Beitrag dar:

1: Lesezeichen  
2. Gefällt mir  
3. Beitrag als „Off-Topic“ markieren  
4. Beitrag als „Unangemessen“ markieren  
5. Abstimmen  
6. Benachrichtigung über Markierung senden  
7. Benachrichtigung an Moderator senden  
8. Beitrag als Spam markieren

---

_[View the full topic](https://meta.discourse.org/t/how-to-unlike-a-topic-or-post/311733)._
