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

CON-385 Add ticket webhooks to webhooks.register docs #822

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
10 changes: 10 additions & 0 deletions apiary.apib
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,10 @@ We consider the following changes to be backwards-incompatible:
We list all backwards-compatible additions here. These are currently available in all published versions.
(There is also a [list of backwards-incompatible upgrades](#changelog) available, but those only apply if you [upgrade your API version](#upgrading-your-api-version).)

#### July 2024
- We added `ticket.created`, `ticket.updated`, `ticket.closed`, `ticket.reopened` and `ticket.deleted` to supported Webhook types.
- We added `ticketMessage.added` to supported Webhook types.

#### June 2024
- We added `tax` to the `products.info` endpoint.
- We added the `daysOff.import` and `daysOff.bulkDelete` endpoints.
Expand Down Expand Up @@ -9185,6 +9189,12 @@ Fetch cloudPlatform url for type and id
+ task.created
+ task.deleted
+ task.updated
+ ticket.closed
+ ticket.created
+ ticket.deleted
+ ticket.reopened
+ ticket.updated
+ ticketMessage.added
+ timeTracking.added
+ timeTracking.deleted
+ timeTracking.updated
Expand Down
4 changes: 4 additions & 0 deletions src/changes-backwards-compatible.apib
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
We list all backwards-compatible additions here. These are currently available in all published versions.
(There is also a [list of backwards-incompatible upgrades](#changelog) available, but those only apply if you [upgrade your API version](#upgrading-your-api-version).)

#### July 2024
- We added `ticket.created`, `ticket.updated`, `ticket.closed`, `ticket.reopened` and `ticket.deleted` to supported Webhook types.
- We added `ticketMessage.added` to supported Webhook types.

#### June 2024
- We added `tax` to the `products.info` endpoint.
- We added the `daysOff.import` and `daysOff.bulkDelete` endpoints.
Expand Down
6 changes: 6 additions & 0 deletions src/datastructures.apib
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,12 @@
+ task.created
+ task.deleted
+ task.updated
+ ticket.closed
+ ticket.created
+ ticket.deleted
+ ticket.reopened
+ ticket.updated
+ ticketMessage.added
+ timeTracking.added
+ timeTracking.deleted
+ timeTracking.updated
Expand Down
Loading