Add skip_notifications parameter to Update Ticket endpoint#383
Open
levindixon wants to merge 2 commits intomainfrom
Open
Add skip_notifications parameter to Update Ticket endpoint#383levindixon wants to merge 2 commits intomainfrom
levindixon wants to merge 2 commits intomainfrom
Conversation
The skip_notifications boolean parameter works on the Update Ticket
(PUT /tickets/{id}) endpoint but was missing from the OpenAPI specs.
This adds it to 2.13, 2.14, 2.15, and Unstable (0) using the same
allOf wrapper pattern used by Create Ticket.
Closes intercom/intercom#474395
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
The allOf wrapper on Update Ticket causes Fern to generate an inline type named UpdateTicketRequest (from x-fern-request-name), which collides with the component schema update_ticket_request. Adding x-fern-type-name: UpdateTicketRequestBody follows the same pattern used by create_ticket_request → CreateTicketRequestBody. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why?
The
skip_notificationsboolean parameter works on the Update Ticket (PUT /tickets/{id}) endpoint but is missing from the OpenAPI specs. The @2.13 changelog explicitly lists it as available on "create a ticket, update a ticket, and reply to a ticket endpoints" — and CS has confirmed it works in production — but it was never added to the Update Ticket spec. This is the source-of-truth counterpart to intercom/developer-docs#744.Intercom conversation: 215473229724012 | GitHub issue: intercom/intercom#474395
How?
Wraps the Update Ticket
requestBodyschema in anallOfwith an inlineskip_notificationsproperty — the same pattern already used by Create Ticket — across all versions where the parameter is supported (2.13, 2.14, 2.15, and 0/Unstable).Generated with Claude Code