resolve_short_id
Retrieve Sentry issue details, project context, and status using a short ID like PROJECT-123. Maps identifiers to comprehensive error tracking information for analysis.
Instructions
Retrieve details about an issue using its short ID. Maps short IDs to issue details, project context, and status.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| organization_slug | Yes | The slug of the organization the issue belongs to | |
| short_id | Yes | The short ID of the issue to resolve (e.g., PROJECT-123) | |
| format | No | Output format (default: markdown) | markdown |
Implementation Reference
- types.ts:167-206 (schema)TypeScript interface defining the response structure for resolving a Sentry short ID, serving as the output schema for the 'resolve_short_id' tool.// Define interface for the short ID resolution response export interface ShortIdResolutionResponse { group: { annotations: any[]; assignedTo: any | null; count: string; culprit: string; firstSeen: string; hasSeen: boolean; id: string; isBookmarked: boolean; isPublic: boolean; isSubscribed: boolean; lastSeen: string; level: string; logger: string | null; metadata: { title: string; }; numComments: number; permalink: string; project: { id: string; name: string; slug: string; }; shareId: string | null; shortId: string; status: string; statusDetails: Record<string, any>; subscriptionDetails: any | null; title: string; type: string; userCount: number; }; groupId: string; organizationSlug: string; projectSlug: string; shortId: string; }