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-X add ticket to tickets.getMessage response #819

Merged
merged 2 commits into from
Jul 19, 2024
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
4 changes: 4 additions & 0 deletions apiary.apib
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,7 @@ We list all backwards-compatible additions here. These are currently available i
(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` to the `tickets.getMessage` endpoint.
- We added `attachments` to the `emailTracking.list` endpoint.
- We added `attachments` to the `emailTracking.create` endpoint.
- We added `ticket.created`, `ticket.updated`, `ticket.closed`, `ticket.reopened` and `ticket.deleted` to supported Webhook types.
Expand Down Expand Up @@ -8558,6 +8559,9 @@ Gets the ticket message.
+ contact
+ user
+ id: `f29abf48-337d-44b4-aad4-585f5277a456` (string)
+ ticket (object)
+ `type`: `ticket` (string)
+ `id`: `4f5c4ee1-9078-0eda-8817-03e4cba61bab` (string)
+ attachments (array)
+ (object)
+ `type`: `file` (string)
Expand Down
3 changes: 3 additions & 0 deletions src/12-tickets/tickets.apib
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ Gets the ticket message.
+ contact
+ user
+ id: `f29abf48-337d-44b4-aad4-585f5277a456` (string)
+ ticket (object)
+ `type`: `ticket` (string)
+ `id`: `4f5c4ee1-9078-0eda-8817-03e4cba61bab` (string)
+ attachments (array)
+ (object)
+ `type`: `file` (string)
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 @@ -5,6 +5,7 @@ We list all backwards-compatible additions here. These are currently available i
(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` to the `tickets.getMessage` endpoint.
- We added `attachments` to the `emailTracking.list` endpoint.
- We added `attachments` to the `emailTracking.create` endpoint.
- We added `ticket.created`, `ticket.updated`, `ticket.closed`, `ticket.reopened` and `ticket.deleted` to supported Webhook types.
Expand Down