diff --git a/develop/print.html b/develop/print.html
index b9d10d2e1a..bcaeb547d8 100644
--- a/develop/print.html
+++ b/develop/print.html
@@ -11161,8 +11161,9 @@ about the user and their local media. Objects contain the following fields:
<p>To use it, you will need to authenticate by providing an <code>access_token</code> for a
server admin: <a href="admin_api/../usage/administration/admin_api">Admin API</a></p>
<p>It returns a JSON body like the following:</p>
-<pre><code class="language-json">{
- "displayname": "User",
+<pre><code class="language-jsonc">{
+ "name": "@user:example.com",
+ "displayname": "User", // can be null if not set
"threepids": [
{
"medium": "email",
@@ -11177,11 +11178,11 @@ server admin: <a href="admin_api/../usage/administration/admin_api">Admin API</a
"validated_at": 1586458409743
}
],
- "avatar_url": "<avatar_url>",
+ "avatar_url": "<avatar_url>", // can be null if not set
+ "is_guest": 0,
"admin": 0,
"deactivated": 0,
"shadow_banned": 0,
- "password_hash": "$2b$12$p9B4GkqYdRTPGD",
"creation_ts": 1560432506,
"appservice_id": null,
"consent_server_notice_sent": null,
|