Resolve a Short ID

GET /api/0/organizations/{organization_id_or_slug}/shortids/{issue_id}/

Resolve a short ID to the project slug and group details.

Path Parameters

organization_id_or_slug (string)
REQUIRED

The ID or slug of the organization the resource belongs to.

issue_id (string)
REQUIRED

The short ID of the issue to resolve.

Scopes

<auth_token> requires one of the following scopes:
  • event:admin
  • event:read
  • event:write
Copied
curl https://sentry.io/api/0/organizations/{organization_id_or_slug}/shortids/{issue_id}/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
Copied
{ "group": { "annotations": [], "assignedTo": { "id": "1", "name": "John Doe", "username": "johndoe", "email": "john@example.com", "avatarUrl": "https://secure.gravatar.com/avatar/1234567890abcdef", "isActive": true, "hasPasswordAuth": true, "isManaged": false, "dateJoined": "2018-01-01T00:00:00Z", "lastLogin": "2023-12-01T10:00:00Z", "has2fa": false, "lastActive": "2023-12-01T10:00:00Z", "isSuperuser": false, "isStaff": false, "experiments": {}, "emails": [ { "id": "1", "email": "john@example.com", "is_verified": true } ], "avatar": { "avatarType": "letter_avatar", "avatarUuid": null, "avatarUrl": null } }, "count": 1, "culprit": "raven.scripts.runner in main", "firstSeen": "2018-11-06T21:19:55Z", "hasSeen": false, "id": "1", "isBookmarked": false, "isPublic": false, "isSubscribed": true, "lastSeen": "2018-11-06T21:19:55Z", "level": "error", "logger": null, "metadata": { "title": "This is an example Python exception" }, "numComments": 0, "permalink": "https://sentry.io/the-interstellar-jurisdiction/pump-station/issues/1/", "project": { "id": "2", "name": "Pump Station", "slug": "pump-station", "platform": "python" }, "shareId": "abc123", "shortId": "PUMP-STATION-1", "status": "unresolved", "statusDetails": {}, "subscriptionDetails": null, "title": "This is an example Python exception", "type": "default", "userCount": 0, "issueCategory": "error", "issueType": "error", "platform": "python", "priority": "medium", "priorityLockedAt": null, "seerFixabilityScore": 0.5, "seerAutofixLastTriggered": null, "substatus": "ongoing" }, "groupId": "1", "organizationSlug": "the-interstellar-jurisdiction", "projectSlug": "pump-station", "shortId": "PUMP-STATION-1" }
Was this helpful?