Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions doc/compiled.json
Original file line number Diff line number Diff line change
Expand Up @@ -26657,6 +26657,16 @@
},
{
"$ref": "#/components/parameters/per_page"
},
{
"name": "q",
"in": "query",
"description": "Filter results by name. Supports the prefix-match syntax `name:<value>`, which returns only spaces whose names begin with `<value>`. Other query formats are ignored; omitting `q` returns all accessible spaces.\n",
"required": false,
"schema": {
"type": "string",
"example": "name:Engineering"
}
}
],
"responses": {
Expand Down Expand Up @@ -26693,6 +26703,12 @@
"400": {
"$ref": "#/components/responses/400"
},
"401": {
"$ref": "#/components/responses/401"
},
"403": {
"$ref": "#/components/responses/403"
},
"404": {
"$ref": "#/components/responses/404"
},
Expand Down
14 changes: 14 additions & 0 deletions paths/spaces/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@ parameters:
- "$ref": "../../parameters.yaml#/account_id"
- "$ref": "../../parameters.yaml#/page"
- "$ref": "../../parameters.yaml#/per_page"
- name: q
in: query
description: >
Filter results by name. Supports the prefix-match syntax `name:<value>`,
which returns only spaces whose names begin with `<value>`.
Other query formats are ignored; omitting `q` returns all accessible spaces.
required: false
schema:
type: string
example: "name:Engineering"
responses:
'200':
description: OK
Expand All @@ -31,6 +41,10 @@ responses:
"$ref": "../../headers.yaml#/Pagination"
'400':
"$ref": "../../responses.yaml#/400"
'401':
"$ref": "../../responses.yaml#/401"
'403':
"$ref": "../../responses.yaml#/403"
'404':
"$ref": "../../responses.yaml#/404"
'429':
Expand Down
Loading