mirror of
https://github.com/matrix-org/matrix-spec
synced 2025-12-20 16:38:37 +01:00
Some checks failed
Spec / 🔎 Validate OpenAPI specifications (push) Has been cancelled
Spec / 🔎 Check Event schema examples (push) Has been cancelled
Spec / 🔎 Check OpenAPI definitions examples (push) Has been cancelled
Spec / 🔎 Check JSON Schemas inline examples (push) Has been cancelled
Spec / ⚙️ Calculate baseURL for later jobs (push) Has been cancelled
Spec / 📢 Run towncrier for changelog (push) Has been cancelled
Spell Check / Spell Check with Typos (push) Has been cancelled
Spec / 🐍 Build OpenAPI definitions (push) Has been cancelled
Spec / 📖 Build the spec (push) Has been cancelled
Spec / 🔎 Validate generated HTML (push) Has been cancelled
Spec / 📖 Build the historical backup spec (push) Has been cancelled
Signed-off-by: Johannes Marbach <n0-0ne+github@mailbox.org> Co-authored-by: Kim Brose <2803622+HarHarLinks@users.noreply.github.com> Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
105 lines
3.5 KiB
YAML
105 lines
3.5 KiB
YAML
# Copyright 2018 New Vector Ltd
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
openapi: 3.1.0
|
|
info:
|
|
title: Matrix Client-Server Application Service Published Room Directory API
|
|
version: 1.0.0
|
|
paths:
|
|
"/directory/list/appservice/{networkId}/{roomId}":
|
|
put:
|
|
summary: |-
|
|
Updates a room's visibility in the application service's published room
|
|
directory.
|
|
description: |-
|
|
Updates the visibility of a given room in the application service's
|
|
published room directory.
|
|
|
|
This API is similar to the
|
|
[visibility API](/client-server-api#put_matrixclientv3directorylistroomroomid)
|
|
used by clients to update the homeserver's more general published room directory.
|
|
|
|
This API requires the use of an application service access token (`as_token`)
|
|
instead of a typical client's access_token. This API cannot be invoked by
|
|
users who are not identified as application services.
|
|
operationId: updateAppserviceRoomDirectoryVisibility
|
|
parameters:
|
|
- in: path
|
|
name: networkId
|
|
description: |-
|
|
The protocol (network) ID to update the room list for. This would
|
|
have been provided by the application service as being listed as
|
|
a supported protocol.
|
|
required: true
|
|
example: irc
|
|
schema:
|
|
type: string
|
|
- in: path
|
|
name: roomId
|
|
description: The room ID to add to the directory.
|
|
required: true
|
|
example: "!somewhere:example.org"
|
|
schema:
|
|
type: string
|
|
requestBody:
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: object
|
|
properties:
|
|
visibility:
|
|
type: string
|
|
enum:
|
|
- public
|
|
- private
|
|
description: |-
|
|
Whether the room should be visible (public) in the directory
|
|
or not (private).
|
|
example: public
|
|
required:
|
|
- visibility
|
|
required: true
|
|
security:
|
|
- appserviceAccessTokenQuery: []
|
|
- appserviceAccessTokenBearer: []
|
|
responses:
|
|
"200":
|
|
description: The room's directory visibility has been updated.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: object
|
|
examples:
|
|
response:
|
|
value: {}
|
|
tags:
|
|
- Application service room directory management
|
|
servers:
|
|
- url: "{protocol}://{hostname}{basePath}"
|
|
variables:
|
|
protocol:
|
|
enum:
|
|
- http
|
|
- https
|
|
default: https
|
|
hostname:
|
|
default: localhost:8008
|
|
basePath:
|
|
default: /_matrix/client/v3
|
|
components:
|
|
securitySchemes:
|
|
appserviceAccessTokenQuery:
|
|
$ref: definitions/security.yaml#/appserviceAccessTokenQuery
|
|
appserviceAccessTokenBearer:
|
|
$ref: definitions/security.yaml#/appserviceAccessTokenBearer
|