Service Overview
Sentry API is the official application monitoring and incident api from Sentry for errors, issues, monitoring, and triage. This Hub entry keeps the service explanation, setup links, and Harbor-safe import path together so operators can review the integration before local credentials and policies are applied.
Sentry API
Service
Application monitoring and incident API
Service type
https://sentry.io/
Base URL
What This Port Does
- List projects for a specific Sentry organization using an explicit organization slug and typed pagination inputs.
- List issues for a Sentry organization using typed filters for project, query, time window, and pagination.
- Resolve a Sentry issue using an explicit organization and issue ID with a bounded JSON request body.
- Keeps service credentials local to Harbor Node so approval, execution, and audit stay inside the Harbor ecosystem.
Operator Setup
- Create or confirm a Sentry account, workspace, or tenant with the API access needed for the actions you plan to enable.
- Import this Hub entry into Harbor, then verify the service base URL and connection settings before testing actions.
- Store the required Bearer token locally in Harbor Node using the Authorization header, then review automatic versus approval-required actions before publish.
- Use the vendor setup guide linked below to create service credentials, scopes, or app registration settings that match your Harbor policy.
Install
Use in Harbor UI or the import-by-URL route.
https://hub.breakwaterharbor.net/p/sentry/sentry-api
http_api
Local shell
9
Actions
Community
Required tier
Never
Secrets imported
Actions
List Projects JSON
{
"slug": "list-projects",
"label": "List Projects",
"description": "List projects for a specific Sentry organization using an explicit organization slug and typed pagination inputs.",
"method": "GET",
"path": "/api/0/organizations/{organizationIdOrSlug}/projects/",
"inputs": {
"parameters": [
{
"name": "organizationIdOrSlug",
"in": "path",
"required": true,
"schema": {
"type": "string",
"minLength": 1
},
"description": "Sentry organization slug or ID that owns the projects."
},
{
"name": "cursor",
"in": "query",
"schema": {
"type": "string"
},
"description": "Pagination cursor from a previous Sentry projects response."
}
]
},
"approvalMode": "automatic",
"requestBodyMode": "none",
"resultMode": "json_summary"
}
Workflows
Org Triage Resolution Check
Future workflow template for inspecting organization projects, narrowing active issues, and operator-reviewed Sentry issue resolution.