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 #739

Merged
merged 32 commits into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
2512e65
Document meetings.complete
Jdww Sep 26, 2023
392d545
Add change to changelog
Jdww Sep 26, 2023
bb65621
Merge branch 'master' into ATL-2280-meeting-complete
joaoinacio Oct 17, 2023
5ea8063
Document meetings.delete
Jdww Oct 18, 2023
ba837a7
document meetings.update
joaoinacio Oct 23, 2023
3f95b79
add to changelog
joaoinacio Oct 23, 2023
5c35a01
chore| add meeting.schedule
tiagobastos Oct 23, 2023
287d67e
chore| fix bad indentation on assignees
tiagobastos Oct 23, 2023
166e0e9
fix: use correct attendees property name
joaoinacio Oct 25, 2023
afdf7f2
add the location request parameter to meetings.update
joaoinacio Oct 25, 2023
375c79a
id is required for location type contact/company
joaoinacio Oct 25, 2023
13b3e93
Merge pull request #744 from teamleadercrm/ATL-2262-meetings_update
joaoinacio Oct 26, 2023
d5468f1
Merge remote-tracking branch 'origin/ATL-2280-meeting-complete' into …
tiagobastos Oct 26, 2023
bc89b7c
chore| fix attendees property & order they are displayed (for consist…
tiagobastos Oct 26, 2023
12294d8
chore| add location
tiagobastos Oct 26, 2023
e9b91db
fix| use correct wording
tiagobastos Oct 26, 2023
f7585f4
fix| /meetings.info location address
tiagobastos Oct 26, 2023
ad6a1bf
Merge pull request #746 from teamleadercrm/meetings.info
joaoinacio Oct 30, 2023
390ca9d
Merge pull request #745 from teamleadercrm/meetings.schedule
joaoinacio Oct 30, 2023
b7e9b1d
Merge remote-tracking branch 'origin/master' into ATL-2280-meeting-co…
tiagobastos Oct 30, 2023
0064877
fix| return meeting id on schedule
tiagobastos Nov 2, 2023
3f3d0df
chore| add finishing touches on meetings.* endpoints
tiagobastos Nov 3, 2023
da3a292
Document meeting web hooks
Jdww Nov 13, 2023
17ec30e
Provide meeting recurrence id
joaoinacio Nov 20, 2023
7777c61
Rename meeting.added to meeting.created
Jdww Nov 20, 2023
c471bba
Merge pull request #754 from teamleadercrm/ATL-2259-meetings-webhooks
Jdww Nov 20, 2023
3d15196
Merge branch 'ATL-2280-meeting-complete' into ATL-1251_meeting_recurr…
Jdww Nov 20, 2023
71a3373
Merge pull request #757 from teamleadercrm/ATL-1251_meeting_recurrence
tiagobastos Nov 20, 2023
c9a8102
Document recurrence_id filter on meetings.list
joaoinacio Nov 22, 2023
24bb806
Merge pull request #759 from teamleadercrm/ATL-2321_meetings_list_rec…
tiagobastos Nov 22, 2023
0f1b4ac
Merge remote-tracking branch 'origin/master' into ATL-2280-meeting-co…
tiagobastos Nov 22, 2023
6ba2f43
chore| move changes to current month
tiagobastos Nov 22, 2023
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
12 changes: 12 additions & 0 deletions apiary.apib
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,7 @@ We list all backwards-compatible additions here. These are currently available i
- We added the `meetings.list` and `meetings.info` endpoints.
- We added `time_estimated` and `amount_unbilled` to `projects-v2/projects.list`.
- We added sorting on `amount_billed`, `amount_paid`, `amount_unbilled`, `external_budget_spent`, `external_budget`, `internal_budget` and `time_estimated` to `projects-v2/projects.list`.
- We added the `meetings.complete` endpoint.

### August 2023
- We added `quotation` as a type for `cloudPlatforms.url`.
Expand Down Expand Up @@ -3275,6 +3276,17 @@ Get information about a meeting.
+ open
+ done

### meetings.complete [POST /meetings.complete]

Mark a meeting as complete.

+ Request (application/json)

+ Attributes (object)
+ id: `46156648-87c6-478d-8aa7-1dc3a00dacab` (string, required)

+ Response 204

# Group Invoicing

## Invoices [/invoices]
Expand Down
13 changes: 12 additions & 1 deletion src/04-calendar/meetings.apib
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,15 @@ Get information about a meeting.
+ status (enum)
+ Members
+ open
+ done
+ done

### meetings.complete [POST /meetings.complete]

Mark a meeting as complete.

+ Request (application/json)

+ Attributes (object)
+ id: `46156648-87c6-478d-8aa7-1dc3a00dacab` (string, required)

+ Response 204
1 change: 1 addition & 0 deletions src/changes-backwards-compatible.apib
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ We list all backwards-compatible additions here. These are currently available i
- We added the `meetings.list` and `meetings.info` endpoints.
- We added `time_estimated` and `amount_unbilled` to `projects-v2/projects.list`.
- We added sorting on `amount_billed`, `amount_paid`, `amount_unbilled`, `external_budget_spent`, `external_budget`, `internal_budget` and `time_estimated` to `projects-v2/projects.list`.
- We added the `meetings.complete` endpoint.

### August 2023
- We added `quotation` as a type for `cloudPlatforms.url`.
Expand Down