diff --git a/docs/img/backoffice_assign_badge.jpg b/docs/img/backoffice_assign_badge.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..c4ea9a2fd62c09d9bf1d7d3c7189e24b7a934c32
Binary files /dev/null and b/docs/img/backoffice_assign_badge.jpg differ
diff --git a/docs/img/backoffice_redeem_badges.jpg b/docs/img/backoffice_redeem_badges.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..eb91aff4363d58084b1efc9aeca5e8c5a6e93c74
Binary files /dev/null and b/docs/img/backoffice_redeem_badges.jpg differ
diff --git a/docs/img/cp_getBadge.png b/docs/img/cp_getBadge.png
new file mode 100644
index 0000000000000000000000000000000000000000..9f201eeb57c5c86ee9e2df5cf2ed2d2422631e6c
Binary files /dev/null and b/docs/img/cp_getBadge.png differ
diff --git a/docs/maps.en.md b/docs/maps.en.md
index f1da9305d35f02ba536100cf6014527fdc598375..a420f62c51d1f780fbc5bbb3fefbea02a8a6e845 100644
--- a/docs/maps.en.md
+++ b/docs/maps.en.md
@@ -22,6 +22,7 @@ This tutorial is "work in progess", hence its worth checking it from time to tim
 * 2020-12-22: World-Exit added.
 * 2020-12-22: Cross-Assembly Links added.
 * 2020-12-25: Added [exitUrl List](exitUrls.en.md)
+* 2020-12-27: Award Badge added.
 
 ## Known Bugs
 Following bugs are known and worked on:
@@ -136,6 +137,11 @@ Tiled provides custom collision shapes for tiles, however these are ignored by o
 
 ![](img/cp_collides.png)
 
+##### Award badges
+You can award badges when stepping on certain tiles. To do this, give the layer the property "getBadge" (string). Use https. The token is a map token, which can be generated in the Backoffice for each badge.
+
+![](img/cp_getBadge.png)
+
 ### Animated Tiles
 Tiles can be combined to animations (loops), for example to make floating water or bliking lights look better. Therefore all frames need to be a single 32x32 tile.
 Create animations by editing the tileset, click on the tile to animate (or pick a free tile to not overwrite existing ones) and click on the animation editor:
diff --git a/docs/maps.md b/docs/maps.md
index 694a713027d1d8208ba116cf654e12335dfec1bf..59c494b990c329f60694edee63d3756c09a7bdfe 100644
--- a/docs/maps.md
+++ b/docs/maps.md
@@ -141,6 +141,11 @@ Um Tiles als undurchgängig zu markieren, müsst ihr diese im Tileeditor öffnen
 
 ![](img/cp_collides.png)
 
+##### Award badges
+Ihr könnt Badges an User vergeben, wenn diese ein bestimmten Tile betreten. Analog zu Start und Exit Layern legt ihr ein Layer dafür an, setzt Tiles an die entsprechenden Stellen und gebt dem Layer die custom property "_getBadge_" (string). Verwendet https! Ein Token könnt Ihr für jedes Badge im Backoffice generieren. Es funktioniert jedoch nur ein **Map** Redeem Token.
+
+![](img/cp_getBadge.png)
+
 ### Animationen
 Tiles können zu Animationen (Loops) zusammengeführt werden, um z.B. fließendes Wasser oder blinkende Lichter darzustellen. Dazu müssen alle "Frames" einer Animation jeweils ein eigenes 32x32 Tile sein.
 Bearbeitet dazu in Tiled das Tileset, wählt das zu animierende Tile (oder ein beliebiges leeres Tile) aus und klickt auf den Animation Editor:
diff --git a/docs/maschinenraum.en.md b/docs/maschinenraum.en.md
index 61a1587a86facf7d96813f97f942c03277889026..d263681c6c681dc06d18e40cb2d84e62b0c09163 100644
--- a/docs/maschinenraum.en.md
+++ b/docs/maschinenraum.en.md
@@ -100,14 +100,76 @@ Badges are distributed to users via token. A matching token can be generated whe
 
 * Achievement
     * Mode 1 (anonymous/ user not known): The assemblies gets a redeem token for the user, then they get the token and the profile with the input box opens (similar to found easter eggs). Redeem the redeem code in your profile to unlock the achievement and get the badge.
-    * Mode 2 (user / SSO known): The assembly hands out the badge to the user. The user has to accept the badge to receive it.
+      * Mode 2 (user / SSO known): The assembly hands out the badge to the user. The user has to accept the badge to receive it.
 
 
 Users will find collected badges in their profile. Users will always have to actively accept a badge - who wants to suddenly find a pink dolphine vibrator in their profile?
 
+##### Assign directly via Backoffice
+Within the backoffice Badges can be directly assigned to users.
+
+![](img/backoffice_assign_badge.jpg)
+
+##### Create Redeem Tokens
+When automaticly assigning badges to users, Redeem Tokens (TM) are necessary. There are four types of Redeem Tokens:
+* **One-Time**: The token can be used exaclty once.
+* **Permanent**: The token can be used an unlimited amount of time.
+* **Map**: The token can be only used in rc3 World Maps.
+* **Limited**: The token can be used an n amount of time.
+
+![](img/backoffice_redeem_badges.jpg)
+  
+These can be created via the Backoffice (see image) or via API:
+
+Just send a REST POST Request to `/api/c/<conference_slug>/assembly/<assembly>/badges/new_redeem_token` with the following body:
+```
+{
+  issuing_token: <secret_issuing_token>,
+  badge_class: <private|public|map|limited>,
+  amount: <int>
+}
+```
+_`amount` is only necessary if you create a limited redeem token._
+
 #### How to distribute badges to the users?
 
-API endpoints will exist soon. You can award badges to individual users in the maschinenraum, too.
+##### Using Redeem Tokens to get the badge
+Badges can be distributed via the Redeem Tokens.
+###### User adds it via the frontend
+A user can go to his profile (`/<conference_slug>/me`) and redeem a token in "My badges". 
+
+A url is available to auto-fill in the token input field: `/<conference_slug>/me/redeem_badge/<redeem_token>`.
+
+When a user redeems a badge via the frontend, it is automatically accepted and set to private on his profile.
+
+###### Automaticly assign a badge to a user via the API
+An API is provided to automatically assign a badge to an user. These badges need to be accepted by the user (`/<conference_slug>/me/manage_badges`).
+
+
+Just send a REST POST Request to `/api/c/<conference_slug>/badges/redeem_token` with the following body:
+```
+{
+  token: <redeem_issuing_token>,
+  username: <username>
+}
+```
+
+##### Using the rc3.world map to assign badges
+In the rc3.world map a tile can be linked to assigning a badge. It works simiar to opening a website. Zou need to generate a Map Redeem Token.
+
+![](img/cp_getBadge.png)
+
+##### API Repsonse
+The API always answaers the following when a badge is sucessfully assigned:
+```
+{
+  "badge": <badgename>,
+  "user":  <username>,
+  "created": <True if the badge has been assigned the first time>
+}
+```
+
+
 
 ## Any More Questions?
 Please send any questions not covered here to the Assembly Team: [rc3@c3assemblies.de](mailto:rc3@c3assemblies.de)
@@ -118,3 +180,4 @@ There is separate documentation for channels and connected questions: [c3voc.de/
 In case of questions regarding streams please contact:
 recommended: IRC, #voc-lounge im Hackint.eu
 possible: [voc@c3voc.de](mailto:voc@c3voc.de)
+ 
\ No newline at end of file
diff --git a/docs/maschinenraum.md b/docs/maschinenraum.md
index cbe8149bdbda15022ef4aa2f8fcd7e06a1f2050b..a4572097082b498fea4835f19d79e93937ed86e7 100644
--- a/docs/maschinenraum.md
+++ b/docs/maschinenraum.md
@@ -111,9 +111,73 @@ Badges werden via Token an die User:innen verteilt. Ein passendes Token kann bei
 
 Gesammelte Badges finden User:innen in ihrem Profil. User:innen müssen den Erhalt der Badges immer aktiv bestätigen - wer möchte schon plötzlich einen rosafarbenen Delphin-Vibrator im Profil vorfinden?
 
-#### Badges verteilen
-API Endpunkt existiert in Kürze, alternativ können Badges individuell im Maschinenraum an Nutzer verteilt werden.
+##### Direktzuweisung im Backoffice
+Im Backoffice können Badges direkt an User vergeben werden.
 
+![](img/backoffice_assign_badge.jpg)
+
+##### Erstellung von Redeem Tokens
+Zum sonstigen Vergeben von Badges wind Redeem Tokens (TM) notwending. Es gibt vier verschiedene Klassen:
+* **One-Time**: Dieses Token ist exakt einmal einlösbar.
+* **Permanent**: Dieses Token ist unendlich oft einlösbar.
+* **Map**: Dieses Token ist kann nur in rc3.World maps eingelöst werden.
+* **Limited**: Dieses Token ist exakt n-mal einlösbar.
+
+![](img/backoffice_redeem_badges.jpg)
+  
+Diese Redeem Tokens können im Backoffice (siehe Bild) oder per API erstellt werden:
+
+
+REST POST Request to `/api/c/<conference_slug>/assembly/<assembly>/badges/new_redeem_token` mit dem folgenden body:
+```
+{
+  issuing_token: <secret_issuing_token>,
+  badge_class: <private|public|map|limited>,
+  amount: <int>
+}
+```
+_`amount` ist nur notwending, wenn Ihr ein Limited Redeem Token erstellen wollt._
+
+#### Wie können Badges an User vergeben werden?
+
+##### Redeem Tokens einlösen
+Mit Redeem Tokens können Badges verteilt werden.
+
+###### User löst es im Frontend ein 
+Ein Benutzer kann ein Redeem Token in seinem Profil (`/<conference_slug>/me`) einlösen unter "Meine Badges".
+
+Eine URL zum automatischen ausfüllen von diesem Feld (z.B. für QR Codes) wird bereitgestellt: `/<conference_slug>/me/redeem_badge/<redeem_token>`.
+
+Wenn ein Benutzer einen Badge im Frontend einlöst, wird dieser Badge automatisch akzeptiert und taucht in seinem Profil als "Privat" auf.
+
+###### Automatisches Zuweisen von Badges mit der API
+Es wird eine API bereitgestellt, mit der Badges einem Benutzer zugewiesen wrden können. Diese Badges müssen vom Benutzer manuell akzeptiert werden (`/<conference_slug>/me/manage_badges`).
+
+
+REST POST Request: `/api/c/<conference_slug>/badges/redeem_token` 
+
+Body:
+```
+{
+  token: <redeem_issuing_token>,
+  username: <username>
+}
+```
+
+##### Badges in der rc3.world zuweisen
+In der rc3.world map kann ein Tile zu einem Badge verlinkt werden. Wenn der Benutzer dieses Teil betritt, bekommt er automatisch den Badge zugewiesen. Es funktioniert ähnlich wie das öffnen einer Website. Es muss ein Map Redeem Token benutzt werden.
+
+![](img/cp_getBadge.png)
+
+##### API Antwort
+The API antwortet immer mit dem folgenden JSON Objekt.
+```
+{
+  "badge": <badgename>,
+  "user":  <username>,
+  "created": <True wenn das Badge zum ersten Mal dem User zugewiesen wurde>
+}
+```
 
 ## Noch Fragen?
 Bitte stellt übrige Fragen an das Assembly-Team: [rc3@c3assemblies.de](mailto:rc3@c3assemblies.de)