resolve_short_id
Retrieve issue details, project context, and status by mapping short IDs like PROJECT-123 to comprehensive Sentry data for debugging and monitoring.
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:168-206 (schema)Schema for the ShortIdResolutionResponse, which defines the output structure for resolving a short ID to Sentry group/issue details, including project and organization info.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; }