summary refs log tree commit diff
path: root/develop/print.html
diff options
context:
space:
mode:
Diffstat (limited to 'develop/print.html')
-rw-r--r--develop/print.html18
1 files changed, 14 insertions, 4 deletions
diff --git a/develop/print.html b/develop/print.html

index 85c36fc1c9..b31c2fec67 100644 --- a/develop/print.html +++ b/develop/print.html
@@ -13880,7 +13880,8 @@ for a server admin: see <a href="admin_api/../usage/administration/admin_api/">A &quot;external_id&quot;: &quot;&lt;user_id_provider_2&gt;&quot; } ], - &quot;user_type&quot;: null + &quot;user_type&quot;: null, + &quot;locked&quot;: false } </code></pre> <p>URL parameters:</p> @@ -13921,7 +13922,8 @@ specific <code>user_id</code>.</p> ], &quot;admin&quot;: false, &quot;deactivated&quot;: false, - &quot;user_type&quot;: null + &quot;user_type&quot;: null, + &quot;locked&quot;: false } </code></pre> <p>Returns HTTP status code:</p> @@ -14020,7 +14022,8 @@ By default, the response is ordered by ascending user ID.</p> &quot;shadow_banned&quot;: 0, &quot;displayname&quot;: &quot;&lt;User One&gt;&quot;, &quot;avatar_url&quot;: null, - &quot;creation_ts&quot;: 1560432668000 + &quot;creation_ts&quot;: 1560432668000, + &quot;locked&quot;: false }, { &quot;name&quot;: &quot;&lt;user_id2&gt;&quot;, &quot;is_guest&quot;: 0, @@ -14031,7 +14034,8 @@ By default, the response is ordered by ascending user ID.</p> &quot;shadow_banned&quot;: 0, &quot;displayname&quot;: &quot;&lt;User Two&gt;&quot;, &quot;avatar_url&quot;: &quot;&lt;avatar_url&gt;&quot;, - &quot;creation_ts&quot;: 1561550621000 + &quot;creation_ts&quot;: 1561550621000, + &quot;locked&quot;: false } ], &quot;next_token&quot;: &quot;100&quot;, @@ -14101,6 +14105,10 @@ Setting this value to <code>b</code> will reverse the above sort order. Defaults Can be provided multiple times. Possible values are <code>bot</code>, <code>support</code> or &quot;empty string&quot;. &quot;empty string&quot; here means to exclude users without a type.</p> </li> +<li> +<p><code>locked</code> - string representing a bool - Is optional and if <code>true</code> will <strong>include</strong> locked users. +Defaults to <code>false</code> to exclude locked users. Note: Introduced in v1.93.</p> +</li> </ul> <p>Caution. The database only has indexes on the columns <code>name</code> and <code>creation_ts</code>. This means that if a different sort order is used (<code>is_guest</code>, <code>admin</code>, @@ -14125,6 +14133,7 @@ This allows user type specific behaviour. There are also types <code>support</co <li><code>avatar_url</code> - string - The user's avatar URL if they have set one.</li> <li><code>creation_ts</code> - integer - The user's creation timestamp in ms.</li> <li><code>last_seen_ts</code> - integer - The user's last activity timestamp in ms.</li> +<li><code>locked</code> - bool - Status if that user has been marked as locked. Note: Introduced in v1.93.</li> </ul> </li> <li> @@ -14134,6 +14143,7 @@ This allows user type specific behaviour. There are also types <code>support</co <p><code>total</code> - integer - Total number of media.</p> </li> </ul> +<p><em>Added in Synapse 1.93:</em> the <code>locked</code> query parameter and response field.</p> <h2 id="query-current-sessions-for-a-user"><a class="header" href="#query-current-sessions-for-a-user">Query current sessions for a user</a></h2> <p>This API returns information about the active sessions for a specific user.</p> <p>The endpoints are:</p>