Open
Conversation
New endpoints:
- POST /tickets/{ticket_id}/jira_links — link a Jira issue to a ticket
- DELETE /tickets/{ticket_id}/jira_links/{jira_issue_key} — unlink
New schema: jira_link (type, jira_issue_id, jira_issue_key,
jira_issue_url, jira_issue_summary, jira_issue_type,
jira_issue_status, ticket_id)
Corresponds to intercom/intercom#490461.
Co-Authored-By: Claude Opus 4.6 <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 monolith now has public API endpoints to link/unlink Jira issues to tickets (intercom/intercom#490461), but the OpenAPI spec doesn't document them yet. Without this, the endpoints won't appear in generated SDKs or developer docs.
How?
Adds two endpoint definitions and a
jira_linkschema to the Preview (descriptions/0/) spec, following the existing tags sub-resource pattern.POST /tickets/{ticket_id}/jira_linksDELETE /tickets/{ticket_id}/jira_links/{jira_issue_key}Decisions
linkJiraIssueToTicket/unlinkJiraIssueFromTicketas operationIds (verb + resource + preposition + parent, matching the tags pattern){jira_issue_key}rather than a body param, matching the controller's route designGenerated with Claude Code