Skip to main content

Sentry full reference

This is the full reference documentation for the Sentry agent connector.

Supported entities and actions

The Sentry connector supports the following entities and actions.

EntityActions
ProjectsList, Get, Search
IssuesList, Get, Search
EventsList, Get, Search
ReleasesList, Get, Search
Project DetailGet

Projects

Projects List

Return a list of projects available to the authenticated user.

Python SDK

await sentry.projects.list()

API

curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_connector_id}/execute' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {your_auth_token}' \
--data '{
"entity": "projects",
"action": "list"
}'

Parameters

Parameter NameTypeRequiredDescription
cursorstringNoPagination cursor for next page of results.
Response Schema

Records

Field NameTypeDescription
idstring | null
namestring | null
slugstring | null
statusstring | null
platformstring | null
dateCreatedstring | null
isBookmarkedboolean | null
isMemberboolean | null
hasAccessboolean | null
isPublicboolean | null
isInternalboolean | null
colorstring | null
featuresarray | null
firstEventstring | null
firstTransactionEventboolean | null
accessarray | null
hasMinifiedStackTraceboolean | null
hasMonitorsboolean | null
hasProfilesboolean | null
hasReplaysboolean | null
hasFeedbacksboolean | null
hasFlagsboolean | null
hasNewFeedbacksboolean | null
hasSessionsboolean | null
hasInsightsHttpboolean | null
hasInsightsDbboolean | null
hasInsightsAssetsboolean | null
hasInsightsAppStartboolean | null
hasInsightsScreenLoadboolean | null
hasInsightsVitalsboolean | null
hasInsightsCachesboolean | null
hasInsightsQueuesboolean | null
hasInsightsAgentMonitoringboolean | null
hasInsightsMCPboolean | null
hasLogsboolean | null
hasTraceMetricsboolean | null
avatarobject | null
organizationobject | null

Projects Get

Return details on an individual project.

Python SDK

await sentry.projects.get(
organization_slug="<str>",
project_slug="<str>"
)

API

curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_connector_id}/execute' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {your_auth_token}' \
--data '{
"entity": "projects",
"action": "get",
"params": {
"organization_slug": "<str>",
"project_slug": "<str>"
}
}'

Parameters

Parameter NameTypeRequiredDescription
organization_slugstringYesThe slug of the organization the project belongs to.
project_slugstringYesThe slug of the project to retrieve.
Response Schema

Records

Field NameTypeDescription
idstring | null
namestring | null
slugstring | null
statusstring | null
platformstring | null
dateCreatedstring | null
isBookmarkedboolean | null
isMemberboolean | null
hasAccessboolean | null
isPublicboolean | null
isInternalboolean | null
colorstring | null
featuresarray | null
firstEventstring | null
firstTransactionEventboolean | null
accessarray | null
hasMinifiedStackTraceboolean | null
hasMonitorsboolean | null
hasProfilesboolean | null
hasReplaysboolean | null
hasFeedbacksboolean | null
hasFlagsboolean | null
hasNewFeedbacksboolean | null
hasSessionsboolean | null
hasInsightsHttpboolean | null
hasInsightsDbboolean | null
hasInsightsAssetsboolean | null
hasInsightsAppStartboolean | null
hasInsightsScreenLoadboolean | null
hasInsightsVitalsboolean | null
hasInsightsCachesboolean | null
hasInsightsQueuesboolean | null
hasInsightsAgentMonitoringboolean | null
hasInsightsMCPboolean | null
hasLogsboolean | null
hasTraceMetricsboolean | null
teamobject | null
teamsarray | null
avatarobject | null
organizationobject | null
latestReleaseobject | null
optionsobject | null
digestsMinDelayinteger | null
digestsMaxDelayinteger | null
resolveAgeinteger | null
dataScrubberboolean | null
safeFieldsarray | null
sensitiveFieldsarray | null
verifySSLboolean | null
scrubIPAddressesboolean | null
scrapeJavaScriptboolean | null
allowedDomainsarray | null
processingIssuesinteger | null
securityTokenstring | null
subjectPrefixstring | null
dataScrubberDefaultsboolean | null
storeCrashReportsboolean | integer | null
subjectTemplatestring | null
securityTokenHeaderstring | null
groupingConfigstring | null
groupingEnhancementsstring | null
derivedGroupingEnhancementsstring | null
secondaryGroupingExpiryinteger | null
secondaryGroupingConfigstring | null
fingerprintingRulesstring | null
pluginsarray | null
platformsarray | null
defaultEnvironmentstring | null
relayPiiConfigstring | null
builtinSymbolSourcesarray | null
dynamicSamplingBiasesarray | null
symbolSourcesstring | null
isDynamicallySampledboolean | null
autofixAutomationTuningstring | null
seerScannerAutomationboolean | null
highlightTagsarray | null
highlightContextobject | null
highlightPresetobject | null
debugFilesRolestring | null

Search and filter projects records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.

Python SDK

await sentry.projects.search(
query={"filter": {"eq": {"access": []}}}
)

API

curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_connector_id}/execute' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {your_auth_token}' \
--data '{
"entity": "projects",
"action": "search",
"params": {
"query": {"filter": {"eq": {"access": []}}}
}
}'

Parameters

Parameter NameTypeRequiredDescription
queryobjectYesFilter and sort conditions. Supports operators: eq, neq, gt, gte, lt, lte, in, like, fuzzy, keyword, not, and, or
query.filterobjectNoFilter conditions
query.sortarrayNoSort conditions
limitintegerNoMaximum results to return (default 1000)
cursorstringNoPagination cursor from previous response's meta.cursor
fieldsarrayNoField paths to include in results

Searchable Fields

Field NameTypeDescription
accessarrayList of access permissions for the authenticated user.
avatarobjectProject avatar information.
colorstringProject color code.
dateCreatedstringDate the project was created.
featuresarrayList of enabled features.
firstEventstringTimestamp of the first event.
firstTransactionEventbooleanWhether a transaction event has been received.
hasAccessbooleanWhether the user has access to this project.
hasCustomMetricsbooleanWhether the project has custom metrics.
hasFeedbacksbooleanWhether the project has user feedback.
hasMinifiedStackTracebooleanWhether the project has minified stack traces.
hasMonitorsbooleanWhether the project has cron monitors.
hasNewFeedbacksbooleanWhether the project has new user feedback.
hasProfilesbooleanWhether the project has profiling data.
hasReplaysbooleanWhether the project has session replays.
hasSessionsbooleanWhether the project has session data.
idstringUnique project identifier.
isBookmarkedbooleanWhether the project is bookmarked.
isInternalbooleanWhether the project is internal.
isMemberbooleanWhether the authenticated user is a member.
isPublicbooleanWhether the project is public.
namestringHuman-readable project name.
organizationobjectOrganization this project belongs to.
platformstringThe platform for this project.
slugstringURL-friendly project identifier.
statusstringProject status.
Response Schema
Field NameTypeDescription
dataarrayList of matching records
metaobjectPagination metadata
meta.has_morebooleanWhether additional pages are available
meta.cursorstring | nullCursor for next page of results
meta.took_msnumber | nullQuery execution time in milliseconds
data[].accessarrayList of access permissions for the authenticated user.
data[].avatarobjectProject avatar information.
data[].colorstringProject color code.
data[].dateCreatedstringDate the project was created.
data[].featuresarrayList of enabled features.
data[].firstEventstringTimestamp of the first event.
data[].firstTransactionEventbooleanWhether a transaction event has been received.
data[].hasAccessbooleanWhether the user has access to this project.
data[].hasCustomMetricsbooleanWhether the project has custom metrics.
data[].hasFeedbacksbooleanWhether the project has user feedback.
data[].hasMinifiedStackTracebooleanWhether the project has minified stack traces.
data[].hasMonitorsbooleanWhether the project has cron monitors.
data[].hasNewFeedbacksbooleanWhether the project has new user feedback.
data[].hasProfilesbooleanWhether the project has profiling data.
data[].hasReplaysbooleanWhether the project has session replays.
data[].hasSessionsbooleanWhether the project has session data.
data[].idstringUnique project identifier.
data[].isBookmarkedbooleanWhether the project is bookmarked.
data[].isInternalbooleanWhether the project is internal.
data[].isMemberbooleanWhether the authenticated user is a member.
data[].isPublicbooleanWhether the project is public.
data[].namestringHuman-readable project name.
data[].organizationobjectOrganization this project belongs to.
data[].platformstringThe platform for this project.
data[].slugstringURL-friendly project identifier.
data[].statusstringProject status.

Issues

Issues List

Return a list of issues (groups) bound to a project. A default query of is:unresolved is applied. To return results with other statuses send a new query value (i.e. ?query= for all results).

Python SDK

await sentry.issues.list(
organization_slug="<str>",
project_slug="<str>"
)

API

curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_connector_id}/execute' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {your_auth_token}' \
--data '{
"entity": "issues",
"action": "list",
"params": {
"organization_slug": "<str>",
"project_slug": "<str>"
}
}'

Parameters

Parameter NameTypeRequiredDescription
organization_slugstringYesThe slug of the organization the issues belong to.
project_slugstringYesThe slug of the project the issues belong to.
querystringNoAn optional Sentry structured search query. If not provided an implied "is:unresolved" is assumed.
statsPeriodstringNoAn optional stat period (can be one of "24h", "14d", and "").
cursorstringNoPagination cursor for next page of results.
Response Schema

Records

Field NameTypeDescription
idstring | null
titlestring | null
shortIdstring | null
culpritstring | null
levelstring | null
statusstring | null
typestring | null
countstring | null
userCountinteger | null
firstSeenstring | null
lastSeenstring | null
hasSeenboolean | null
isBookmarkedboolean | null
isPublicboolean | null
isSubscribedboolean | null
loggerstring | null
permalinkstring | null
platformstring | null
shareIdstring | null
numCommentsinteger | null
issueTypestring | null
issueCategorystring | null
isUnhandledboolean | null
substatusstring | null
metadataobject | null
projectobject | null
statsobject | null
statusDetailsobject | null
assignedToobject | null
annotationsarray | null
subscriptionDetailsobject | null

Issues Get

Return details on an individual issue. This returns the basic stats for the issue (title, last seen, first seen), some overall numbers (number of comments, user reports) as well as the summarized event data.

Python SDK

await sentry.issues.get(
organization_slug="<str>",
issue_id="<str>"
)

API

curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_connector_id}/execute' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {your_auth_token}' \
--data '{
"entity": "issues",
"action": "get",
"params": {
"organization_slug": "<str>",
"issue_id": "<str>"
}
}'

Parameters

Parameter NameTypeRequiredDescription
organization_slugstringYesThe slug of the organization the issue belongs to.
issue_idstringYesThe ID of the issue to retrieve.
Response Schema

Records

Field NameTypeDescription
idstring | null
titlestring | null
shortIdstring | null
culpritstring | null
levelstring | null
statusstring | null
typestring | null
countstring | null
userCountinteger | null
firstSeenstring | null
lastSeenstring | null
hasSeenboolean | null
isBookmarkedboolean | null
isPublicboolean | null
isSubscribedboolean | null
loggerstring | null
permalinkstring | null
platformstring | null
shareIdstring | null
numCommentsinteger | null
issueTypestring | null
issueCategorystring | null
isUnhandledboolean | null
substatusstring | null
metadataobject | null
projectobject | null
statsobject | null
statusDetailsobject | null
assignedToobject | null
annotationsarray | null
subscriptionDetailsobject | null

Search and filter issues records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.

Python SDK

await sentry.issues.search(
query={"filter": {"eq": {"annotations": []}}}
)

API

curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_connector_id}/execute' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {your_auth_token}' \
--data '{
"entity": "issues",
"action": "search",
"params": {
"query": {"filter": {"eq": {"annotations": []}}}
}
}'

Parameters

Parameter NameTypeRequiredDescription
queryobjectYesFilter and sort conditions. Supports operators: eq, neq, gt, gte, lt, lte, in, like, fuzzy, keyword, not, and, or
query.filterobjectNoFilter conditions
query.sortarrayNoSort conditions
limitintegerNoMaximum results to return (default 1000)
cursorstringNoPagination cursor from previous response's meta.cursor
fieldsarrayNoField paths to include in results

Searchable Fields

Field NameTypeDescription
annotationsarrayAnnotations on the issue.
assignedToobjectUser or team assigned to this issue.
countstringNumber of events for this issue.
culpritstringThe culprit (source) of the issue.
firstSeenstringWhen the issue was first seen.
hasSeenbooleanWhether the authenticated user has seen the issue.
idstringUnique issue identifier.
isBookmarkedbooleanWhether the issue is bookmarked.
isPublicbooleanWhether the issue is public.
isSubscribedbooleanWhether the user is subscribed to the issue.
isUnhandledbooleanWhether the issue is from an unhandled error.
issueCategorystringThe category classification of the issue.
issueTypestringThe type classification of the issue.
lastSeenstringWhen the issue was last seen.
levelstringIssue severity level.
loggerstringLogger that generated the issue.
metadataobjectIssue metadata.
numCommentsintegerNumber of comments on the issue.
permalinkstringPermalink to the issue in the Sentry UI.
platformstringPlatform for this issue.
projectobjectProject this issue belongs to.
shareIdstringShare ID if the issue is shared.
shortIdstringShort human-readable identifier.
statsobjectIssue event statistics.
statusstringIssue status (resolved, unresolved, ignored).
statusDetailsobjectStatus detail information.
subscriptionDetailsobjectSubscription details.
substatusstringIssue substatus.
titlestringIssue title.
typestringIssue type.
userCountintegerNumber of users affected.
Response Schema
Field NameTypeDescription
dataarrayList of matching records
metaobjectPagination metadata
meta.has_morebooleanWhether additional pages are available
meta.cursorstring | nullCursor for next page of results
meta.took_msnumber | nullQuery execution time in milliseconds
data[].annotationsarrayAnnotations on the issue.
data[].assignedToobjectUser or team assigned to this issue.
data[].countstringNumber of events for this issue.
data[].culpritstringThe culprit (source) of the issue.
data[].firstSeenstringWhen the issue was first seen.
data[].hasSeenbooleanWhether the authenticated user has seen the issue.
data[].idstringUnique issue identifier.
data[].isBookmarkedbooleanWhether the issue is bookmarked.
data[].isPublicbooleanWhether the issue is public.
data[].isSubscribedbooleanWhether the user is subscribed to the issue.
data[].isUnhandledbooleanWhether the issue is from an unhandled error.
data[].issueCategorystringThe category classification of the issue.
data[].issueTypestringThe type classification of the issue.
data[].lastSeenstringWhen the issue was last seen.
data[].levelstringIssue severity level.
data[].loggerstringLogger that generated the issue.
data[].metadataobjectIssue metadata.
data[].numCommentsintegerNumber of comments on the issue.
data[].permalinkstringPermalink to the issue in the Sentry UI.
data[].platformstringPlatform for this issue.
data[].projectobjectProject this issue belongs to.
data[].shareIdstringShare ID if the issue is shared.
data[].shortIdstringShort human-readable identifier.
data[].statsobjectIssue event statistics.
data[].statusstringIssue status (resolved, unresolved, ignored).
data[].statusDetailsobjectStatus detail information.
data[].subscriptionDetailsobjectSubscription details.
data[].substatusstringIssue substatus.
data[].titlestringIssue title.
data[].typestringIssue type.
data[].userCountintegerNumber of users affected.

Events

Events List

Return a list of events bound to a project.

Python SDK

await sentry.events.list(
organization_slug="<str>",
project_slug="<str>"
)

API

curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_connector_id}/execute' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {your_auth_token}' \
--data '{
"entity": "events",
"action": "list",
"params": {
"organization_slug": "<str>",
"project_slug": "<str>"
}
}'

Parameters

Parameter NameTypeRequiredDescription
organization_slugstringYesThe slug of the organization the events belong to.
project_slugstringYesThe slug of the project the events belong to.
fullstringNoIf set to true, the event payload will include the full event body.
cursorstringNoPagination cursor for next page of results.
Response Schema

Records

Field NameTypeDescription
idstring | null
eventIDstring | null
groupIDstring | null
titlestring | null
messagestring | null
typestring | null
platformstring | null
dateCreatedstring | null
dateReceivedstring | null
culpritstring | null
locationstring | null
crashFilestring | null
projectIDstring | null
sdkstring | null
diststring | null
sizeinteger | null
event.typestring | null
tagsarray | null
userobject | null
metadataobject | null
contextobject | null
contextsobject | null
entriesarray | null
errorsarray | null
fingerprintsarray | null
packagesobject | null
groupingConfigobject | null
_metaobject | null

Events Get

Return details on an individual event.

Python SDK

await sentry.events.get(
organization_slug="<str>",
project_slug="<str>",
event_id="<str>"
)

API

curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_connector_id}/execute' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {your_auth_token}' \
--data '{
"entity": "events",
"action": "get",
"params": {
"organization_slug": "<str>",
"project_slug": "<str>",
"event_id": "<str>"
}
}'

Parameters

Parameter NameTypeRequiredDescription
organization_slugstringYesThe slug of the organization the event belongs to.
project_slugstringYesThe slug of the project the event belongs to.
event_idstringYesThe ID of the event to retrieve (hexadecimal).
Response Schema

Records

Field NameTypeDescription
idstring | null
eventIDstring | null
groupIDstring | null
titlestring | null
messagestring | null
typestring | null
platformstring | null
dateCreatedstring | null
dateReceivedstring | null
culpritstring | null
locationstring | null
crashFilestring | null
projectIDstring | null
sdkstring | null
diststring | null
sizeinteger | null
event.typestring | null
tagsarray | null
userobject | null
metadataobject | null
contextobject | null
contextsobject | null
entriesarray | null
errorsarray | null
fingerprintsarray | null
packagesobject | null
groupingConfigobject | null
_metaobject | null

Search and filter events records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.

Python SDK

await sentry.events.search(
query={"filter": {"eq": {"_meta": {}}}}
)

API

curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_connector_id}/execute' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {your_auth_token}' \
--data '{
"entity": "events",
"action": "search",
"params": {
"query": {"filter": {"eq": {"_meta": {}}}}
}
}'

Parameters

Parameter NameTypeRequiredDescription
queryobjectYesFilter and sort conditions. Supports operators: eq, neq, gt, gte, lt, lte, in, like, fuzzy, keyword, not, and, or
query.filterobjectNoFilter conditions
query.sortarrayNoSort conditions
limitintegerNoMaximum results to return (default 1000)
cursorstringNoPagination cursor from previous response's meta.cursor
fieldsarrayNoField paths to include in results

Searchable Fields

Field NameTypeDescription
_metaobjectMeta information for data scrubbing.
contextobjectAdditional context data.
contextsobjectStructured context information.
crashFilestringCrash file reference.
culpritstringThe culprit (source) of the event.
dateCreatedstringWhen the event was created.
dateReceivedstringWhen the event was received by Sentry.
diststringDistribution information.
entriesarrayEvent entries (exception, breadcrumbs, request, etc.).
errorsarrayProcessing errors.
event.typestringThe type of the event.
eventIDstringEvent ID as reported by the client.
fingerprintsarrayFingerprints used for grouping.
groupIDstringID of the issue group this event belongs to.
groupingConfigobjectGrouping configuration.
idstringUnique event identifier.
locationstringLocation in source code.
messagestringEvent message.
metadataobjectEvent metadata.
occurrencestringOccurrence information for the event.
packagesobjectPackage information.
platformstringPlatform the event was generated on.
projectIDstringProject ID this event belongs to.
sdkstringSDK information.
sizeintegerEvent payload size in bytes.
tagsarrayTags associated with the event.
titlestringEvent title.
typestringEvent type.
userobjectUser associated with the event.
Response Schema
Field NameTypeDescription
dataarrayList of matching records
metaobjectPagination metadata
meta.has_morebooleanWhether additional pages are available
meta.cursorstring | nullCursor for next page of results
meta.took_msnumber | nullQuery execution time in milliseconds
data[]._metaobjectMeta information for data scrubbing.
data[].contextobjectAdditional context data.
data[].contextsobjectStructured context information.
data[].crashFilestringCrash file reference.
data[].culpritstringThe culprit (source) of the event.
data[].dateCreatedstringWhen the event was created.
data[].dateReceivedstringWhen the event was received by Sentry.
data[].diststringDistribution information.
data[].entriesarrayEvent entries (exception, breadcrumbs, request, etc.).
data[].errorsarrayProcessing errors.
data[].event.typestringThe type of the event.
data[].eventIDstringEvent ID as reported by the client.
data[].fingerprintsarrayFingerprints used for grouping.
data[].groupIDstringID of the issue group this event belongs to.
data[].groupingConfigobjectGrouping configuration.
data[].idstringUnique event identifier.
data[].locationstringLocation in source code.
data[].messagestringEvent message.
data[].metadataobjectEvent metadata.
data[].occurrencestringOccurrence information for the event.
data[].packagesobjectPackage information.
data[].platformstringPlatform the event was generated on.
data[].projectIDstringProject ID this event belongs to.
data[].sdkstringSDK information.
data[].sizeintegerEvent payload size in bytes.
data[].tagsarrayTags associated with the event.
data[].titlestringEvent title.
data[].typestringEvent type.
data[].userobjectUser associated with the event.

Releases

Releases List

Return a list of releases for a given organization.

Python SDK

await sentry.releases.list(
organization_slug="<str>"
)

API

curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_connector_id}/execute' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {your_auth_token}' \
--data '{
"entity": "releases",
"action": "list",
"params": {
"organization_slug": "<str>"
}
}'

Parameters

Parameter NameTypeRequiredDescription
organization_slugstringYesThe slug of the organization.
querystringNoThis parameter can be used to create a "starts with" filter for the version.
cursorstringNoPagination cursor for next page of results.
Response Schema

Records

Field NameTypeDescription
idinteger | null
versionstring | null
shortVersionstring | null
refstring | null
urlstring | null
statusstring | null
dateCreatedstring | null
dateReleasedstring | null
ownerstring | null
newGroupsinteger | null
commitCountinteger | null
deployCountinteger | null
firstEventstring | null
lastEventstring | null
lastCommitobject | null
lastDeployobject | null
dataobject | null
userAgentstring | null
authorsarray | null
projectsarray | null
versionInfoobject | null
currentProjectMetaobject | null

Releases Get

Return a release for a given organization.

Python SDK

await sentry.releases.get(
organization_slug="<str>",
version="<str>"
)

API

curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_connector_id}/execute' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {your_auth_token}' \
--data '{
"entity": "releases",
"action": "get",
"params": {
"organization_slug": "<str>",
"version": "<str>"
}
}'

Parameters

Parameter NameTypeRequiredDescription
organization_slugstringYesThe slug of the organization.
versionstringYesThe version identifier of the release.
Response Schema

Records

Field NameTypeDescription
idinteger | null
versionstring | null
shortVersionstring | null
refstring | null
urlstring | null
statusstring | null
dateCreatedstring | null
dateReleasedstring | null
ownerstring | null
newGroupsinteger | null
commitCountinteger | null
deployCountinteger | null
firstEventstring | null
lastEventstring | null
lastCommitobject | null
lastDeployobject | null
dataobject | null
userAgentstring | null
authorsarray | null
projectsarray | null
versionInfoobject | null
currentProjectMetaobject | null

Search and filter releases records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.

Python SDK

await sentry.releases.search(
query={"filter": {"eq": {"authors": []}}}
)

API

curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_connector_id}/execute' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {your_auth_token}' \
--data '{
"entity": "releases",
"action": "search",
"params": {
"query": {"filter": {"eq": {"authors": []}}}
}
}'

Parameters

Parameter NameTypeRequiredDescription
queryobjectYesFilter and sort conditions. Supports operators: eq, neq, gt, gte, lt, lte, in, like, fuzzy, keyword, not, and, or
query.filterobjectNoFilter conditions
query.sortarrayNoSort conditions
limitintegerNoMaximum results to return (default 1000)
cursorstringNoPagination cursor from previous response's meta.cursor
fieldsarrayNoField paths to include in results

Searchable Fields

Field NameTypeDescription
authorsarrayAuthors of commits in this release.
commitCountintegerNumber of commits in this release.
currentProjectMetaobjectMetadata for the current project context.
dataobjectAdditional release data.
dateCreatedstringWhen the release was created.
dateReleasedstringWhen the release was deployed.
deployCountintegerNumber of deploys for this release.
firstEventstringTimestamp of the first event in this release.
idintegerUnique release identifier.
lastCommitobjectLast commit in this release.
lastDeployobjectLast deploy of this release.
lastEventstringTimestamp of the last event in this release.
newGroupsintegerNumber of new issue groups in this release.
ownerstringOwner of the release.
projectsarrayProjects associated with this release.
refstringGit reference (commit SHA, tag, etc.).
shortVersionstringShort version string.
statusstringRelease status.
urlstringURL associated with the release.
userAgentstringUser agent that created the release.
versionstringRelease version string.
versionInfoobjectParsed version information.
Response Schema
Field NameTypeDescription
dataarrayList of matching records
metaobjectPagination metadata
meta.has_morebooleanWhether additional pages are available
meta.cursorstring | nullCursor for next page of results
meta.took_msnumber | nullQuery execution time in milliseconds
data[].authorsarrayAuthors of commits in this release.
data[].commitCountintegerNumber of commits in this release.
data[].currentProjectMetaobjectMetadata for the current project context.
data[].dataobjectAdditional release data.
data[].dateCreatedstringWhen the release was created.
data[].dateReleasedstringWhen the release was deployed.
data[].deployCountintegerNumber of deploys for this release.
data[].firstEventstringTimestamp of the first event in this release.
data[].idintegerUnique release identifier.
data[].lastCommitobjectLast commit in this release.
data[].lastDeployobjectLast deploy of this release.
data[].lastEventstringTimestamp of the last event in this release.
data[].newGroupsintegerNumber of new issue groups in this release.
data[].ownerstringOwner of the release.
data[].projectsarrayProjects associated with this release.
data[].refstringGit reference (commit SHA, tag, etc.).
data[].shortVersionstringShort version string.
data[].statusstringRelease status.
data[].urlstringURL associated with the release.
data[].userAgentstringUser agent that created the release.
data[].versionstringRelease version string.
data[].versionInfoobjectParsed version information.

Project Detail

Project Detail Get

Return detailed information about a specific project.

Python SDK

await sentry.project_detail.get(
organization_slug="<str>",
project_slug="<str>"
)

API

curl --location 'https://api.airbyte.ai/api/v1/integrations/connectors/{your_connector_id}/execute' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {your_auth_token}' \
--data '{
"entity": "project_detail",
"action": "get",
"params": {
"organization_slug": "<str>",
"project_slug": "<str>"
}
}'

Parameters

Parameter NameTypeRequiredDescription
organization_slugstringYesThe slug of the organization the project belongs to.
project_slugstringYesThe slug of the project.
Response Schema

Records

Field NameTypeDescription
idstring | null
namestring | null
slugstring | null
statusstring | null
platformstring | null
dateCreatedstring | null
isBookmarkedboolean | null
isMemberboolean | null
hasAccessboolean | null
isPublicboolean | null
isInternalboolean | null
colorstring | null
featuresarray | null
firstEventstring | null
firstTransactionEventboolean | null
accessarray | null
hasMinifiedStackTraceboolean | null
hasMonitorsboolean | null
hasProfilesboolean | null
hasReplaysboolean | null
hasFeedbacksboolean | null
hasFlagsboolean | null
hasNewFeedbacksboolean | null
hasSessionsboolean | null
hasInsightsHttpboolean | null
hasInsightsDbboolean | null
hasInsightsAssetsboolean | null
hasInsightsAppStartboolean | null
hasInsightsScreenLoadboolean | null
hasInsightsVitalsboolean | null
hasInsightsCachesboolean | null
hasInsightsQueuesboolean | null
hasInsightsAgentMonitoringboolean | null
hasInsightsMCPboolean | null
hasLogsboolean | null
hasTraceMetricsboolean | null
teamobject | null
teamsarray | null
avatarobject | null
organizationobject | null
latestReleaseobject | null
optionsobject | null
digestsMinDelayinteger | null
digestsMaxDelayinteger | null
resolveAgeinteger | null
dataScrubberboolean | null
safeFieldsarray | null
sensitiveFieldsarray | null
verifySSLboolean | null
scrubIPAddressesboolean | null
scrapeJavaScriptboolean | null
allowedDomainsarray | null
processingIssuesinteger | null
securityTokenstring | null
subjectPrefixstring | null
dataScrubberDefaultsboolean | null
storeCrashReportsboolean | integer | null
subjectTemplatestring | null
securityTokenHeaderstring | null
groupingConfigstring | null
groupingEnhancementsstring | null
derivedGroupingEnhancementsstring | null
secondaryGroupingExpiryinteger | null
secondaryGroupingConfigstring | null
fingerprintingRulesstring | null
pluginsarray | null
platformsarray | null
defaultEnvironmentstring | null
relayPiiConfigstring | null
builtinSymbolSourcesarray | null
dynamicSamplingBiasesarray | null
symbolSourcesstring | null
isDynamicallySampledboolean | null
autofixAutomationTuningstring | null
seerScannerAutomationboolean | null
highlightTagsarray | null
highlightContextobject | null
highlightPresetobject | null
debugFilesRolestring | null