Resolve a Short ID

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

This resolves a short ID to the project slug and internal issue ID.

Path Parameters

organization_id_or_slug (string)
REQUIRED

The ID or slug of the organization the short ID should be looked up in.

short_id (string)
REQUIRED

The short ID to look up.

Scopes

<auth_token> requires one of the following scopes:
  • org: read
Copied
curl https://sentry.io/api/0/organizations/{organization_id_or_slug}/shortids/{short_id}/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
Copied
{ "group": { "annotations": [], "assignedTo": 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" }, "shareId": null, "shortId": "PUMP-STATION-1", "status": "unresolved", "statusDetails": {}, "subscriptionDetails": null, "title": "This is an example Python exception", "type": "default", "userCount": 0 }, "groupId": "1", "organizationSlug": "the-interstellar-jurisdiction", "projectSlug": "pump-station", "shortId": "PUMP-STATION-1" }