Spec device_id on whoami
Spec for https://github.com/matrix-org/matrix-doc/pull/2033
This commit is contained in:
parent
457f3995af
commit
3b2c0ff233
1 changed files with 10 additions and 2 deletions
|
@ -47,7 +47,8 @@ paths:
|
||||||
The token belongs to a known user.
|
The token belongs to a known user.
|
||||||
examples:
|
examples:
|
||||||
application/json: {
|
application/json: {
|
||||||
"user_id": "@joe:example.org"
|
"user_id": "@joe:example.org",
|
||||||
|
"device_id": "ABC1234"
|
||||||
}
|
}
|
||||||
schema:
|
schema:
|
||||||
type: object
|
type: object
|
||||||
|
@ -55,7 +56,14 @@ paths:
|
||||||
properties:
|
properties:
|
||||||
user_id:
|
user_id:
|
||||||
type: string
|
type: string
|
||||||
description: The user id that owns the access token.
|
description: The user ID that owns the access token.
|
||||||
|
device_id:
|
||||||
|
type: string
|
||||||
|
description: |-
|
||||||
|
Device ID associated with the access token. If no device
|
||||||
|
is associated with the access token (such as in the case
|
||||||
|
of application services) then this field can be omitted.
|
||||||
|
Otherwise this is required.
|
||||||
401:
|
401:
|
||||||
description:
|
description:
|
||||||
The token is not recognised
|
The token is not recognised
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue