Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Meetings list: filter by recurrence #759

Merged
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
2 changes: 2 additions & 0 deletions apiary.apib
Original file line number Diff line number Diff line change
Expand Up @@ -432,6 +432,7 @@ We list all backwards-compatible additions here. These are currently available i
- We added the `meetings.schedule`, `meetings.update`, `meetings.complete` and `meetings.delete` endpoints.
- We added `meeting.created`, `meeting.updated` and `meeting.deleted` types to supported Webhook types.
- The `meetings.info` and `meetings.list` endpoints now return the meeting recurrence id for recurring meetings.
- The `meetings.list` endpoint can now filter meetings by recurrence id.

#### September 2023
- We added the `meetings.list` and `meetings.info` endpoints.
Expand Down Expand Up @@ -3165,6 +3166,7 @@ Get a list of meetings.
+ `end_date`: `2019-02-04` (string, optional)
+ `milestone_id`: `f29abf48-337d-44b4-aad4-585f5277a456` (string, optional)
+ `term`: `funny joke HR meeting` (string, optional)
+ `recurrence_id`: `1dfccc8e-68d0-0b83-8d1b-5cf1b0d99ab1` (string, optional)
+ page (Page, optional)
+ sort (array, optional)
+ (object)
Expand Down
1 change: 1 addition & 0 deletions src/04-calendar/meetings.apib
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Get a list of meetings.
+ `end_date`: `2019-02-04` (string, optional)
+ `milestone_id`: `f29abf48-337d-44b4-aad4-585f5277a456` (string, optional)
+ `term`: `funny joke HR meeting` (string, optional)
+ `recurrence_id`: `1dfccc8e-68d0-0b83-8d1b-5cf1b0d99ab1` (string, optional)
+ page (Page, optional)
+ sort (array, optional)
+ (object)
Expand Down
1 change: 1 addition & 0 deletions src/changes-backwards-compatible.apib
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ We list all backwards-compatible additions here. These are currently available i
- We added the `meetings.schedule`, `meetings.update`, `meetings.complete` and `meetings.delete` endpoints.
- We added `meeting.created`, `meeting.updated` and `meeting.deleted` types to supported Webhook types.
- The `meetings.info` and `meetings.list` endpoints now return the meeting recurrence id for recurring meetings.
- The `meetings.list` endpoint can now filter meetings by recurrence id.

#### September 2023
- We added the `meetings.list` and `meetings.info` endpoints.
Expand Down