mirror of
https://github.com/matrix-org/synapse.git
synced 2025-10-05 12:31:18 +02:00
deploy: 7a1cefc6e37aa583647f2804c9d9c9765712c59a
This commit is contained in:
parent
82fa3e9e6f
commit
ad8086afc0
@ -591,6 +591,75 @@ member are returned.</p>
|
|||||||
<li><code>joined_rooms</code> - An array of <code>room_id</code>.</li>
|
<li><code>joined_rooms</code> - An array of <code>room_id</code>.</li>
|
||||||
<li><code>total</code> - Number of rooms.</li>
|
<li><code>total</code> - Number of rooms.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<h2 id="account-data"><a class="header" href="#account-data">Account Data</a></h2>
|
||||||
|
<p>Gets information about account data for a specific <code>user_id</code>.</p>
|
||||||
|
<p>The API is:</p>
|
||||||
|
<pre><code>GET /_synapse/admin/v1/users/<user_id>/accountdata
|
||||||
|
</code></pre>
|
||||||
|
<p>A response body like the following is returned:</p>
|
||||||
|
<pre><code class="language-json">{
|
||||||
|
"account_data": {
|
||||||
|
"global": {
|
||||||
|
"m.secret_storage.key.LmIGHTg5W": {
|
||||||
|
"algorithm": "m.secret_storage.v1.aes-hmac-sha2",
|
||||||
|
"iv": "fwjNZatxg==",
|
||||||
|
"mac": "eWh9kNnLWZUNOgnc="
|
||||||
|
},
|
||||||
|
"im.vector.hide_profile": {
|
||||||
|
"hide_profile": true
|
||||||
|
},
|
||||||
|
"org.matrix.preview_urls": {
|
||||||
|
"disable": false
|
||||||
|
},
|
||||||
|
"im.vector.riot.breadcrumb_rooms": {
|
||||||
|
"rooms": [
|
||||||
|
"!LxcBDAsDUVAfJDEo:matrix.org",
|
||||||
|
"!MAhRxqasbItjOqxu:matrix.org"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"m.accepted_terms": {
|
||||||
|
"accepted": [
|
||||||
|
"https://example.org/somewhere/privacy-1.2-en.html",
|
||||||
|
"https://example.org/somewhere/terms-2.0-en.html"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"im.vector.setting.breadcrumbs": {
|
||||||
|
"recent_rooms": [
|
||||||
|
"!MAhRxqasbItqxuEt:matrix.org",
|
||||||
|
"!ZtSaPCawyWtxiImy:matrix.org"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"rooms": {
|
||||||
|
"!GUdfZSHUJibpiVqHYd:matrix.org": {
|
||||||
|
"m.fully_read": {
|
||||||
|
"event_id": "$156334540fYIhZ:matrix.org"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"!tOZwOOiqwCYQkLhV:matrix.org": {
|
||||||
|
"m.fully_read": {
|
||||||
|
"event_id": "$xjsIyp4_NaVl2yPvIZs_k1Jl8tsC_Sp23wjqXPno"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</code></pre>
|
||||||
|
<p><strong>Parameters</strong></p>
|
||||||
|
<p>The following parameters should be set in the URL:</p>
|
||||||
|
<ul>
|
||||||
|
<li><code>user_id</code> - fully qualified: for example, <code>@user:server.com</code>.</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>Response</strong></p>
|
||||||
|
<p>The following fields are returned in the JSON response body:</p>
|
||||||
|
<ul>
|
||||||
|
<li><code>account_data</code> - A map containing the account data for the user
|
||||||
|
<ul>
|
||||||
|
<li><code>global</code> - A map containing the global account data for the user</li>
|
||||||
|
<li><code>rooms</code> - A map containing the account data per room for the user</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
<h2 id="user-media"><a class="header" href="#user-media">User media</a></h2>
|
<h2 id="user-media"><a class="header" href="#user-media">User media</a></h2>
|
||||||
<h3 id="list-media-uploaded-by-a-user"><a class="header" href="#list-media-uploaded-by-a-user">List media uploaded by a user</a></h3>
|
<h3 id="list-media-uploaded-by-a-user"><a class="header" href="#list-media-uploaded-by-a-user">List media uploaded by a user</a></h3>
|
||||||
<p>Gets a list of all local media that a specific <code>user_id</code> has created.
|
<p>Gets a list of all local media that a specific <code>user_id</code> has created.
|
||||||
|
@ -11548,6 +11548,75 @@ member are returned.</p>
|
|||||||
<li><code>joined_rooms</code> - An array of <code>room_id</code>.</li>
|
<li><code>joined_rooms</code> - An array of <code>room_id</code>.</li>
|
||||||
<li><code>total</code> - Number of rooms.</li>
|
<li><code>total</code> - Number of rooms.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<h2 id="account-data"><a class="header" href="#account-data">Account Data</a></h2>
|
||||||
|
<p>Gets information about account data for a specific <code>user_id</code>.</p>
|
||||||
|
<p>The API is:</p>
|
||||||
|
<pre><code>GET /_synapse/admin/v1/users/<user_id>/accountdata
|
||||||
|
</code></pre>
|
||||||
|
<p>A response body like the following is returned:</p>
|
||||||
|
<pre><code class="language-json">{
|
||||||
|
"account_data": {
|
||||||
|
"global": {
|
||||||
|
"m.secret_storage.key.LmIGHTg5W": {
|
||||||
|
"algorithm": "m.secret_storage.v1.aes-hmac-sha2",
|
||||||
|
"iv": "fwjNZatxg==",
|
||||||
|
"mac": "eWh9kNnLWZUNOgnc="
|
||||||
|
},
|
||||||
|
"im.vector.hide_profile": {
|
||||||
|
"hide_profile": true
|
||||||
|
},
|
||||||
|
"org.matrix.preview_urls": {
|
||||||
|
"disable": false
|
||||||
|
},
|
||||||
|
"im.vector.riot.breadcrumb_rooms": {
|
||||||
|
"rooms": [
|
||||||
|
"!LxcBDAsDUVAfJDEo:matrix.org",
|
||||||
|
"!MAhRxqasbItjOqxu:matrix.org"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"m.accepted_terms": {
|
||||||
|
"accepted": [
|
||||||
|
"https://example.org/somewhere/privacy-1.2-en.html",
|
||||||
|
"https://example.org/somewhere/terms-2.0-en.html"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"im.vector.setting.breadcrumbs": {
|
||||||
|
"recent_rooms": [
|
||||||
|
"!MAhRxqasbItqxuEt:matrix.org",
|
||||||
|
"!ZtSaPCawyWtxiImy:matrix.org"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"rooms": {
|
||||||
|
"!GUdfZSHUJibpiVqHYd:matrix.org": {
|
||||||
|
"m.fully_read": {
|
||||||
|
"event_id": "$156334540fYIhZ:matrix.org"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"!tOZwOOiqwCYQkLhV:matrix.org": {
|
||||||
|
"m.fully_read": {
|
||||||
|
"event_id": "$xjsIyp4_NaVl2yPvIZs_k1Jl8tsC_Sp23wjqXPno"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</code></pre>
|
||||||
|
<p><strong>Parameters</strong></p>
|
||||||
|
<p>The following parameters should be set in the URL:</p>
|
||||||
|
<ul>
|
||||||
|
<li><code>user_id</code> - fully qualified: for example, <code>@user:server.com</code>.</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>Response</strong></p>
|
||||||
|
<p>The following fields are returned in the JSON response body:</p>
|
||||||
|
<ul>
|
||||||
|
<li><code>account_data</code> - A map containing the account data for the user
|
||||||
|
<ul>
|
||||||
|
<li><code>global</code> - A map containing the global account data for the user</li>
|
||||||
|
<li><code>rooms</code> - A map containing the account data per room for the user</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
<h2 id="user-media"><a class="header" href="#user-media">User media</a></h2>
|
<h2 id="user-media"><a class="header" href="#user-media">User media</a></h2>
|
||||||
<h3 id="list-media-uploaded-by-a-user"><a class="header" href="#list-media-uploaded-by-a-user">List media uploaded by a user</a></h3>
|
<h3 id="list-media-uploaded-by-a-user"><a class="header" href="#list-media-uploaded-by-a-user">List media uploaded by a user</a></h3>
|
||||||
<p>Gets a list of all local media that a specific <code>user_id</code> has created.
|
<p>Gets a list of all local media that a specific <code>user_id</code> has created.
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user