From fee5bb75cdb975199806533418bf2040c60d625f Mon Sep 17 00:00:00 2001 From: sunsations Date: Fri, 20 Mar 2026 08:35:04 +0100 Subject: [PATCH] Add impersonating_user field to Comments API documentation Document the impersonating_user field in the Comments API response. This field is present when a comment was created while impersonating another user and contains: - id: The impersonating user's ID - firstname: The impersonating user's first name - lastname: The impersonating user's last name --- sections/comments.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sections/comments.md b/sections/comments.md index ea27392..3325c29 100644 --- a/sections/comments.md +++ b/sections/comments.md @@ -15,6 +15,7 @@ German: "Notizen" The representation contains, among the standard fields, also: - user (creator) +- impersonating_user (only present when the comment was created while impersonating another user) ```json { @@ -28,6 +29,11 @@ The representation contains, among the standard fields, also: "firstname": "Tobias", "lastname": "Miesel" }, + "impersonating_user": { + "id": 789, + "firstname": "Erika", + "lastname": "Mustermann" + }, "created_at": "2018-10-17T09:33:46Z", "updated_at": "2018-10-17T09:33:46Z" }