mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
43 lines
1.3 KiB
YAML
43 lines
1.3 KiB
YAML
# /api/v3/meetings/{id}/sections
|
|
---
|
|
get:
|
|
summary: List meeting sections
|
|
operationId: list_meeting_sections
|
|
tags:
|
|
- Meetings
|
|
description: |-
|
|
Lists all sections for the given meeting, including the backlog section as the last element.
|
|
|
|
The backlog section is read-only and its `_links.meeting` points to the owning meeting (the
|
|
series template for recurring meeting occurrences, otherwise the meeting itself).
|
|
parameters:
|
|
- description: Meeting identifier
|
|
example: 1
|
|
in: path
|
|
name: id
|
|
required: true
|
|
schema:
|
|
type: integer
|
|
responses:
|
|
'200':
|
|
description: OK
|
|
content:
|
|
application/hal+json:
|
|
schema:
|
|
$ref: "../components/schemas/meeting_section_collection_model.yml"
|
|
'404':
|
|
content:
|
|
application/hal+json:
|
|
schema:
|
|
$ref: "../components/schemas/error_response.yml"
|
|
examples:
|
|
response:
|
|
value:
|
|
_type: Error
|
|
errorIdentifier: urn:openproject-org:api:v3:errors:NotFound
|
|
message: The requested resource could not be found.
|
|
description: |-
|
|
Returned if the meeting does not exist or the client does not have sufficient permissions to see it.
|
|
|
|
**Required permission:** view meetings
|