Merge pull request #1239 from Zil0/delete_devices
Document delete_devices endpoint
This commit is contained in:
commit
14da8ff4b0
2 changed files with 50 additions and 1 deletions
|
@ -139,7 +139,7 @@ paths:
|
|||
description: |-
|
||||
This API endpoint uses the `User-Interactive Authentication API`_.
|
||||
|
||||
Deletes the given device, and invalidates any access token assoicated with it.
|
||||
Deletes the given device, and invalidates any access token associated with it.
|
||||
operationId: deleteDevice
|
||||
security:
|
||||
- accessToken: []
|
||||
|
@ -177,3 +177,50 @@ paths:
|
|||
"$ref": "definitions/auth_response.yaml"
|
||||
tags:
|
||||
- Device management
|
||||
"/delete_devices":
|
||||
post:
|
||||
summary: Bulk deletion of devices
|
||||
description: |-
|
||||
This API endpoint uses the `User-Interactive Authentication API`_.
|
||||
|
||||
Deletes the given devices, and invalidates any access token associated with them.
|
||||
operationId: deleteDevices
|
||||
security:
|
||||
- accessToken: []
|
||||
parameters:
|
||||
- in: body
|
||||
name: body
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
devices:
|
||||
type: array
|
||||
description: The list of device IDs to delete.
|
||||
items:
|
||||
type: string
|
||||
description: A list of device IDs.
|
||||
example: ["QBUAZIFURK", "AUIECTSRND"]
|
||||
auth:
|
||||
description: |-
|
||||
Additional authentication information for the
|
||||
user-interactive authentication API.
|
||||
"$ref": "definitions/auth_data.yaml"
|
||||
required:
|
||||
- devices
|
||||
responses:
|
||||
200:
|
||||
description: |-
|
||||
The devices were successfully removed, or had been removed
|
||||
previously.
|
||||
schema:
|
||||
type: object
|
||||
examples:
|
||||
application/json: {
|
||||
}
|
||||
401:
|
||||
description: |-
|
||||
The homeserver requires additional authentication information.
|
||||
schema:
|
||||
"$ref": "definitions/auth_response.yaml"
|
||||
tags:
|
||||
- Device management
|
||||
|
|
|
@ -9,6 +9,8 @@ Unreleased changes
|
|||
(`#1096 <https://github.com/matrix-org/matrix-doc/pull/1096>`_).
|
||||
- ``GET /rooms/{roomId}/event/{eventId}``
|
||||
(`#1110 <https://github.com/matrix-org/matrix-doc/pull/1110>`_).
|
||||
- ``POST /delete_devices``
|
||||
(`#1239 <https://github.com/matrix-org/matrix-doc/pull/1239>`_).
|
||||
|
||||
- Sticker messages:
|
||||
- Add sticker message event definition.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue