mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-04-04 18:24:10 +02:00
Params in query, not path
This commit is contained in:
parent
a463820d83
commit
b4c89accb2
|
|
@ -37,19 +37,19 @@ paths:
|
||||||
security:
|
security:
|
||||||
- accessToken: []
|
- accessToken: []
|
||||||
parameters:
|
parameters:
|
||||||
- in: path
|
- in: query
|
||||||
type: string
|
type: string
|
||||||
name: from
|
name: from
|
||||||
description: Pagination token given to retrieve the next set of events.
|
description: Pagination token given to retrieve the next set of events.
|
||||||
required: false
|
required: false
|
||||||
x-example: "xxxxx"
|
x-example: "xxxxx"
|
||||||
- in: path
|
- in: query
|
||||||
type: number
|
type: number
|
||||||
name: limit
|
name: limit
|
||||||
description: Limit on the number of events to return in this request.
|
description: Limit on the number of events to return in this request.
|
||||||
required: false
|
required: false
|
||||||
x-example: "20"
|
x-example: "20"
|
||||||
- in: path
|
- in: query
|
||||||
name: only
|
name: only
|
||||||
type: string
|
type: string
|
||||||
description: |-
|
description: |-
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue