summary refs log tree commit diff
path: root/latest/admin_api
diff options
context:
space:
mode:
Diffstat (limited to 'latest/admin_api')
-rw-r--r--latest/admin_api/rooms.html127
-rw-r--r--latest/admin_api/user_admin_api.html26
2 files changed, 153 insertions, 0 deletions
diff --git a/latest/admin_api/rooms.html b/latest/admin_api/rooms.html

index 12a1c436b9..d3fc9e7f14 100644 --- a/latest/admin_api/rooms.html +++ b/latest/admin_api/rooms.html
@@ -504,6 +504,133 @@ If the room does not define a type, the value will be <code>null</code>.</li> ] } </code></pre> +<h1 id="room-messages-api"><a class="header" href="#room-messages-api">Room Messages API</a></h1> +<p>The Room Messages admin API allows server admins to get all messages +sent to a room in a given timeframe. There are various parameters available +that allow for filtering and ordering the returned list. This API supports pagination.</p> +<p>To use it, you will need to authenticate by providing an <code>access_token</code> +for a server admin: see <a href="../usage/administration/admin_api">Admin API</a>.</p> +<p>This endpoint mirrors the <a href="https://spec.matrix.org/v1.1/client-server-api/#get_matrixclientv3roomsroomidmessages">Matrix Spec defined Messages API</a>.</p> +<p>The API is:</p> +<pre><code>GET /_synapse/admin/v1/rooms/&lt;room_id&gt;/messages +</code></pre> +<p><strong>Parameters</strong></p> +<p>The following path parameters are required:</p> +<ul> +<li><code>room_id</code> - The ID of the room you wish you fetch messages from.</li> +</ul> +<p>The following query parameters are available:</p> +<ul> +<li><code>from</code> (required) - The token to start returning events from. This token can be obtained from a prev_batch +or next_batch token returned by the /sync endpoint, or from an end token returned by a previous request to this endpoint.</li> +<li><code>to</code> - The token to spot returning events at.</li> +<li><code>limit</code> - The maximum number of events to return. Defaults to <code>10</code>.</li> +<li><code>filter</code> - A JSON RoomEventFilter to filter returned events with.</li> +<li><code>dir</code> - The direction to return events from. Either <code>f</code> for forwards or <code>b</code> for backwards. Setting +this value to <code>b</code> will reverse the above sort order. Defaults to <code>f</code>.</li> +</ul> +<p><strong>Response</strong></p> +<p>The following fields are possible in the JSON response body:</p> +<ul> +<li><code>chunk</code> - A list of room events. The order depends on the dir parameter. +Note that an empty chunk does not necessarily imply that no more events are available. Clients should continue to paginate until no end property is returned.</li> +<li><code>end</code> - A token corresponding to the end of chunk. This token can be passed back to this endpoint to request further events. +If no further events are available, this property is omitted from the response.</li> +<li><code>start</code> - A token corresponding to the start of chunk.</li> +<li><code>state</code> - A list of state events relevant to showing the chunk.</li> +</ul> +<p><strong>Example</strong></p> +<p>For more details on each chunk, read <a href="https://spec.matrix.org/v1.1/client-server-api/#get_matrixclientv3roomsroomidmessages">the Matrix specification</a>.</p> +<pre><code class="language-json">{ + &quot;chunk&quot;: [ + { + &quot;content&quot;: { + &quot;body&quot;: &quot;This is an example text message&quot;, + &quot;format&quot;: &quot;org.matrix.custom.html&quot;, + &quot;formatted_body&quot;: &quot;&lt;b&gt;This is an example text message&lt;/b&gt;&quot;, + &quot;msgtype&quot;: &quot;m.text&quot; + }, + &quot;event_id&quot;: &quot;$143273582443PhrSn:example.org&quot;, + &quot;origin_server_ts&quot;: 1432735824653, + &quot;room_id&quot;: &quot;!636q39766251:example.com&quot;, + &quot;sender&quot;: &quot;@example:example.org&quot;, + &quot;type&quot;: &quot;m.room.message&quot;, + &quot;unsigned&quot;: { + &quot;age&quot;: 1234 + } + }, + { + &quot;content&quot;: { + &quot;name&quot;: &quot;The room name&quot; + }, + &quot;event_id&quot;: &quot;$143273582443PhrSn:example.org&quot;, + &quot;origin_server_ts&quot;: 1432735824653, + &quot;room_id&quot;: &quot;!636q39766251:example.com&quot;, + &quot;sender&quot;: &quot;@example:example.org&quot;, + &quot;state_key&quot;: &quot;&quot;, + &quot;type&quot;: &quot;m.room.name&quot;, + &quot;unsigned&quot;: { + &quot;age&quot;: 1234 + } + }, + { + &quot;content&quot;: { + &quot;body&quot;: &quot;Gangnam Style&quot;, + &quot;info&quot;: { + &quot;duration&quot;: 2140786, + &quot;h&quot;: 320, + &quot;mimetype&quot;: &quot;video/mp4&quot;, + &quot;size&quot;: 1563685, + &quot;thumbnail_info&quot;: { + &quot;h&quot;: 300, + &quot;mimetype&quot;: &quot;image/jpeg&quot;, + &quot;size&quot;: 46144, + &quot;w&quot;: 300 + }, + &quot;thumbnail_url&quot;: &quot;mxc://example.org/FHyPlCeYUSFFxlgbQYZmoEoe&quot;, + &quot;w&quot;: 480 + }, + &quot;msgtype&quot;: &quot;m.video&quot;, + &quot;url&quot;: &quot;mxc://example.org/a526eYUSFFxlgbQYZmo442&quot; + }, + &quot;event_id&quot;: &quot;$143273582443PhrSn:example.org&quot;, + &quot;origin_server_ts&quot;: 1432735824653, + &quot;room_id&quot;: &quot;!636q39766251:example.com&quot;, + &quot;sender&quot;: &quot;@example:example.org&quot;, + &quot;type&quot;: &quot;m.room.message&quot;, + &quot;unsigned&quot;: { + &quot;age&quot;: 1234 + } + } + ], + &quot;end&quot;: &quot;t47409-4357353_219380_26003_2265&quot;, + &quot;start&quot;: &quot;t47429-4392820_219380_26003_2265&quot; +} +</code></pre> +<h1 id="room-timestamp-to-event-api"><a class="header" href="#room-timestamp-to-event-api">Room Timestamp to Event API</a></h1> +<p>The Room Timestamp to Event API endpoint fetches the <code>event_id</code> of the closest event to the given +timestamp (<code>ts</code> query parameter) in the given direction (<code>dir</code> query parameter).</p> +<p>Useful for cases like jump to date so you can start paginating messages from +a given date in the archive.</p> +<p>The API is:</p> +<pre><code> GET /_synapse/admin/v1/rooms/&lt;room_id&gt;/timestamp_to_event +</code></pre> +<p><strong>Parameters</strong></p> +<p>The following path parameters are required:</p> +<ul> +<li><code>room_id</code> - The ID of the room you wish to check.</li> +</ul> +<p>The following query parameters are available:</p> +<ul> +<li><code>ts</code> - a timestamp in milliseconds where we will find the closest event in +the given direction.</li> +<li><code>dir</code> - can be <code>f</code> or <code>b</code> to indicate forwards and backwards in time from the +given timestamp. Defaults to <code>f</code>.</li> +</ul> +<p><strong>Response</strong></p> +<ul> +<li><code>event_id</code> - converted from timestamp</li> +</ul> <h1 id="block-room-api"><a class="header" href="#block-room-api">Block Room API</a></h1> <p>The Block Room admin API allows server admins to block and unblock rooms, and query to see if a given room is blocked. diff --git a/latest/admin_api/user_admin_api.html b/latest/admin_api/user_admin_api.html
index adeefc21dc..108ce7bd62 100644 --- a/latest/admin_api/user_admin_api.html +++ b/latest/admin_api/user_admin_api.html
@@ -181,6 +181,7 @@ for a server admin: see <a href="../usage/administration/admin_api">Admin API</a &quot;appservice_id&quot;: null, &quot;consent_server_notice_sent&quot;: null, &quot;consent_version&quot;: null, + &quot;consent_ts&quot;: null, &quot;external_ids&quot;: [ { &quot;auth_provider&quot;: &quot;&lt;provider1&gt;&quot;, @@ -488,6 +489,7 @@ is set to <code>true</code>:</p> <li>Remove the user's creation (registration) timestamp</li> <li><a href="#override-ratelimiting-for-users">Remove rate limit overrides</a></li> <li>Remove from monthly active users</li> +<li>Remove user's consent information (consent version and timestamp)</li> </ul> <h2 id="reset-password"><a class="header" href="#reset-password">Reset password</a></h2> <p>Changes the password of another user. This will automatically log the user out of all their devices.</p> @@ -1136,6 +1138,30 @@ for more information.</p> </code></pre> <p>The request and response format is the same as the <a href="https://matrix.org/docs/spec/client_server/r0.6.0#get-matrix-client-r0-register-available">/_matrix/client/r0/register/available</a> API.</p> +<h3 id="find-a-user-based-on-their-id-in-an-auth-provider"><a class="header" href="#find-a-user-based-on-their-id-in-an-auth-provider">Find a user based on their ID in an auth provider</a></h3> +<p>The API is:</p> +<pre><code>GET /_synapse/admin/v1/auth_providers/$provider/users/$external_id +</code></pre> +<p>When a user matched the given ID for the given provider, an HTTP code <code>200</code> with a response body like the following is returned:</p> +<pre><code class="language-json">{ + &quot;user_id&quot;: &quot;@hello:example.org&quot; +} +</code></pre> +<p><strong>Parameters</strong></p> +<p>The following parameters should be set in the URL:</p> +<ul> +<li><code>provider</code> - The ID of the authentication provider, as advertised by the <a href="https://spec.matrix.org/latest/client-server-api/#post_matrixclientv3login"><code>GET /_matrix/client/v3/login</code></a> API in the <code>m.login.sso</code> authentication method.</li> +<li><code>external_id</code> - The user ID from the authentication provider. Usually corresponds to the <code>sub</code> claim for OIDC providers, or to the <code>uid</code> attestation for SAML2 providers.</li> +</ul> +<p>The <code>external_id</code> may have characters that are not URL-safe (typically <code>/</code>, <code>:</code> or <code>@</code>), so it is advised to URL-encode those parameters.</p> +<p><strong>Errors</strong></p> +<p>Returns a <code>404</code> HTTP status code if no user was found, with a response body like this:</p> +<pre><code class="language-json">{ + &quot;errcode&quot;:&quot;M_NOT_FOUND&quot;, + &quot;error&quot;:&quot;User not found&quot; +} +</code></pre> +<p><em>Added in Synapse 1.68.0.</em></p> </main>