You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.4 KiB
YAML
74 lines
2.4 KiB
YAML
# Copyright 2023 Tulir Asokan
|
|
#
|
|
# 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 Application Service API
|
|
version: 1.0.0
|
|
paths:
|
|
/ping:
|
|
post:
|
|
x-addedInMatrixVersion: "1.7"
|
|
summary: Ping the application service
|
|
description: |-
|
|
This API is called by the homeserver to ensure that the connection works
|
|
and the `hs_token` the homeserver has is correct.
|
|
|
|
Currently this is only called by the homeserver as a direct result of
|
|
the application service calling
|
|
[`POST /_matrix/client/v1/appservice/{appserviceId}/ping`](#post_matrixclientv1appserviceappserviceidping).
|
|
operationId: ping
|
|
security:
|
|
- homeserverAccessToken: []
|
|
requestBody:
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: object
|
|
example: {
|
|
"transaction_id": "mautrix-go_1683636478256400935_123"
|
|
}
|
|
properties:
|
|
transaction_id:
|
|
type: string
|
|
description: |-
|
|
A transaction ID for the ping, copied directly from the
|
|
`POST /_matrix/client/v1/appservice/{appserviceId}/ping` call.
|
|
description: Ping body with optional transaction ID.
|
|
responses:
|
|
"200":
|
|
description: The provided `hs_token` is valid and the ping request was successful.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: object
|
|
examples:
|
|
response:
|
|
value: {}
|
|
servers:
|
|
- url: "{protocol}://{hostname}{basePath}"
|
|
variables:
|
|
protocol:
|
|
enum:
|
|
- http
|
|
- https
|
|
default: https
|
|
hostname:
|
|
default: localhost:8008
|
|
basePath:
|
|
default: /_matrix/app/v1
|
|
components:
|
|
securitySchemes:
|
|
homeserverAccessToken:
|
|
$ref: definitions/security.yaml#/homeserverAccessToken
|