This connector is optimized for AI agents. For the data replication connector, see Sentry .
This is the full reference documentation for the Sentry agent connector.
Supported entities and actions
The Sentry connector supports the following entities and actions.
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 Name Type Required Description cursorstringNo Pagination cursor for next page of results.
Response Schema Records Field Name Type Description idstring | nullnamestring | nullslugstring | nullstatusstring | nullplatformstring | nulldateCreatedstring | nullisBookmarkedboolean | nullisMemberboolean | nullhasAccessboolean | nullisPublicboolean | nullisInternalboolean | nullcolorstring | nullfeaturesarray | nullfirstEventstring | nullfirstTransactionEventboolean | nullaccessarray | nullhasMinifiedStackTraceboolean | nullhasMonitorsboolean | nullhasProfilesboolean | nullhasReplaysboolean | nullhasFeedbacksboolean | nullhasFlagsboolean | nullhasNewFeedbacksboolean | nullhasSessionsboolean | nullhasInsightsHttpboolean | nullhasInsightsDbboolean | nullhasInsightsAssetsboolean | nullhasInsightsAppStartboolean | nullhasInsightsScreenLoadboolean | nullhasInsightsVitalsboolean | nullhasInsightsCachesboolean | nullhasInsightsQueuesboolean | nullhasInsightsAgentMonitoringboolean | nullhasInsightsMCPboolean | nullhasLogsboolean | nullhasTraceMetricsboolean | nullavatarobject | nullorganizationobject | 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 Name Type Required Description organization_slugstringYes The slug of the organization the project belongs to. project_slugstringYes The slug of the project to retrieve.
Response Schema Records Field Name Type Description idstring | nullnamestring | nullslugstring | nullstatusstring | nullplatformstring | nulldateCreatedstring | nullisBookmarkedboolean | nullisMemberboolean | nullhasAccessboolean | nullisPublicboolean | nullisInternalboolean | nullcolorstring | nullfeaturesarray | nullfirstEventstring | nullfirstTransactionEventboolean | nullaccessarray | nullhasMinifiedStackTraceboolean | nullhasMonitorsboolean | nullhasProfilesboolean | nullhasReplaysboolean | nullhasFeedbacksboolean | nullhasFlagsboolean | nullhasNewFeedbacksboolean | nullhasSessionsboolean | nullhasInsightsHttpboolean | nullhasInsightsDbboolean | nullhasInsightsAssetsboolean | nullhasInsightsAppStartboolean | nullhasInsightsScreenLoadboolean | nullhasInsightsVitalsboolean | nullhasInsightsCachesboolean | nullhasInsightsQueuesboolean | nullhasInsightsAgentMonitoringboolean | nullhasInsightsMCPboolean | nullhasLogsboolean | nullhasTraceMetricsboolean | nullteamobject | nullteamsarray | nullavatarobject | nullorganizationobject | nulllatestReleaseobject | nulloptionsobject | nulldigestsMinDelayinteger | nulldigestsMaxDelayinteger | nullresolveAgeinteger | nulldataScrubberboolean | nullsafeFieldsarray | nullsensitiveFieldsarray | nullverifySSLboolean | nullscrubIPAddressesboolean | nullscrapeJavaScriptboolean | nullallowedDomainsarray | nullprocessingIssuesinteger | nullsecurityTokenstring | nullsubjectPrefixstring | nulldataScrubberDefaultsboolean | nullstoreCrashReportsboolean | integer | nullsubjectTemplatestring | nullsecurityTokenHeaderstring | nullgroupingConfigstring | nullgroupingEnhancementsstring | nullderivedGroupingEnhancementsstring | nullsecondaryGroupingExpiryinteger | nullsecondaryGroupingConfigstring | nullfingerprintingRulesstring | nullpluginsarray | nullplatformsarray | nulldefaultEnvironmentstring | nullrelayPiiConfigstring | nullbuiltinSymbolSourcesarray | nulldynamicSamplingBiasesarray | nullsymbolSourcesstring | nullisDynamicallySampledboolean | nullautofixAutomationTuningstring | nullseerScannerAutomationboolean | nullhighlightTagsarray | nullhighlightContextobject | nullhighlightPresetobject | nulldebugFilesRolestring | null
Projects Search
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 Name Type Required Description queryobjectYes Filter and sort conditions. Supports operators: eq, neq, gt, gte, lt, lte, in, like, fuzzy, keyword, not, and, or query.filterobjectNo Filter conditions query.sortarrayNo Sort conditions limitintegerNo Maximum results to return (default 1000) cursorstringNo Pagination cursor from previous response's meta.cursor fieldsarrayNo Field paths to include in results
Searchable Fields
Field Name Type Description 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 Name Type Description 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 Name Type Required Description organization_slugstringYes The slug of the organization the issues belong to. project_slugstringYes The slug of the project the issues belong to. querystringNo An optional Sentry structured search query. If not provided an implied "is:unresolved" is assumed. statsPeriodstringNo An optional stat period (can be one of "24h", "14d", and ""). cursorstringNo Pagination cursor for next page of results.
Response Schema Records Field Name Type Description idstring | nulltitlestring | nullshortIdstring | nullculpritstring | nulllevelstring | nullstatusstring | nulltypestring | nullcountstring | nulluserCountinteger | nullfirstSeenstring | nulllastSeenstring | nullhasSeenboolean | nullisBookmarkedboolean | nullisPublicboolean | nullisSubscribedboolean | nullloggerstring | nullpermalinkstring | nullplatformstring | nullshareIdstring | nullnumCommentsinteger | nullissueTypestring | nullissueCategorystring | nullisUnhandledboolean | nullsubstatusstring | nullmetadataobject | nullprojectobject | nullstatsobject | nullstatusDetailsobject | nullassignedToobject | nullannotationsarray | nullsubscriptionDetailsobject | 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 Name Type Required Description organization_slugstringYes The slug of the organization the issue belongs to. issue_idstringYes The ID of the issue to retrieve.
Response Schema Records Field Name Type Description idstring | nulltitlestring | nullshortIdstring | nullculpritstring | nulllevelstring | nullstatusstring | nulltypestring | nullcountstring | nulluserCountinteger | nullfirstSeenstring | nulllastSeenstring | nullhasSeenboolean | nullisBookmarkedboolean | nullisPublicboolean | nullisSubscribedboolean | nullloggerstring | nullpermalinkstring | nullplatformstring | nullshareIdstring | nullnumCommentsinteger | nullissueTypestring | nullissueCategorystring | nullisUnhandledboolean | nullsubstatusstring | nullmetadataobject | nullprojectobject | nullstatsobject | nullstatusDetailsobject | nullassignedToobject | nullannotationsarray | nullsubscriptionDetailsobject | null
Issues Search
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 Name Type Required Description queryobjectYes Filter and sort conditions. Supports operators: eq, neq, gt, gte, lt, lte, in, like, fuzzy, keyword, not, and, or query.filterobjectNo Filter conditions query.sortarrayNo Sort conditions limitintegerNo Maximum results to return (default 1000) cursorstringNo Pagination cursor from previous response's meta.cursor fieldsarrayNo Field paths to include in results
Searchable Fields
Field Name Type Description 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 Name Type Description 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 Name Type Required Description organization_slugstringYes The slug of the organization the events belong to. project_slugstringYes The slug of the project the events belong to. fullstringNo If set to true, the event payload will include the full event body. cursorstringNo Pagination cursor for next page of results.
Response Schema Records Field Name Type Description idstring | nulleventIDstring | nullgroupIDstring | nulltitlestring | nullmessagestring | nulltypestring | nullplatformstring | nulldateCreatedstring | nulldateReceivedstring | nullculpritstring | nulllocationstring | nullcrashFilestring | nullprojectIDstring | nullsdkstring | nulldiststring | nullsizeinteger | nullevent.typestring | nulltagsarray | nulluserobject | nullmetadataobject | nullcontextobject | nullcontextsobject | nullentriesarray | nullerrorsarray | nullfingerprintsarray | nullpackagesobject | nullgroupingConfigobject | 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 Name Type Required Description organization_slugstringYes The slug of the organization the event belongs to. project_slugstringYes The slug of the project the event belongs to. event_idstringYes The ID of the event to retrieve (hexadecimal).
Response Schema Records Field Name Type Description idstring | nulleventIDstring | nullgroupIDstring | nulltitlestring | nullmessagestring | nulltypestring | nullplatformstring | nulldateCreatedstring | nulldateReceivedstring | nullculpritstring | nulllocationstring | nullcrashFilestring | nullprojectIDstring | nullsdkstring | nulldiststring | nullsizeinteger | nullevent.typestring | nulltagsarray | nulluserobject | nullmetadataobject | nullcontextobject | nullcontextsobject | nullentriesarray | nullerrorsarray | nullfingerprintsarray | nullpackagesobject | nullgroupingConfigobject | null_metaobject | null
Events Search
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 Name Type Required Description queryobjectYes Filter and sort conditions. Supports operators: eq, neq, gt, gte, lt, lte, in, like, fuzzy, keyword, not, and, or query.filterobjectNo Filter conditions query.sortarrayNo Sort conditions limitintegerNo Maximum results to return (default 1000) cursorstringNo Pagination cursor from previous response's meta.cursor fieldsarrayNo Field paths to include in results
Searchable Fields
Field Name Type Description _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 Name Type Description 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 Name Type Required Description organization_slugstringYes The slug of the organization. querystringNo This parameter can be used to create a "starts with" filter for the version. cursorstringNo Pagination cursor for next page of results.
Response Schema Records Field Name Type Description idinteger | nullversionstring | nullshortVersionstring | nullrefstring | nullurlstring | nullstatusstring | nulldateCreatedstring | nulldateReleasedstring | nullownerstring | nullnewGroupsinteger | nullcommitCountinteger | nulldeployCountinteger | nullfirstEventstring | nulllastEventstring | nulllastCommitobject | nulllastDeployobject | nulldataobject | nulluserAgentstring | nullauthorsarray | nullprojectsarray | nullversionInfoobject | nullcurrentProjectMetaobject | 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 Name Type Required Description organization_slugstringYes The slug of the organization. versionstringYes The version identifier of the release.
Response Schema Records Field Name Type Description idinteger | nullversionstring | nullshortVersionstring | nullrefstring | nullurlstring | nullstatusstring | nulldateCreatedstring | nulldateReleasedstring | nullownerstring | nullnewGroupsinteger | nullcommitCountinteger | nulldeployCountinteger | nullfirstEventstring | nulllastEventstring | nulllastCommitobject | nulllastDeployobject | nulldataobject | nulluserAgentstring | nullauthorsarray | nullprojectsarray | nullversionInfoobject | nullcurrentProjectMetaobject | null
Releases Search
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 Name Type Required Description queryobjectYes Filter and sort conditions. Supports operators: eq, neq, gt, gte, lt, lte, in, like, fuzzy, keyword, not, and, or query.filterobjectNo Filter conditions query.sortarrayNo Sort conditions limitintegerNo Maximum results to return (default 1000) cursorstringNo Pagination cursor from previous response's meta.cursor fieldsarrayNo Field paths to include in results
Searchable Fields
Field Name Type Description 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 Name Type Description 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 Name Type Required Description organization_slugstringYes The slug of the organization the project belongs to. project_slugstringYes The slug of the project.
Response Schema Records Field Name Type Description idstring | nullnamestring | nullslugstring | nullstatusstring | nullplatformstring | nulldateCreatedstring | nullisBookmarkedboolean | nullisMemberboolean | nullhasAccessboolean | nullisPublicboolean | nullisInternalboolean | nullcolorstring | nullfeaturesarray | nullfirstEventstring | nullfirstTransactionEventboolean | nullaccessarray | nullhasMinifiedStackTraceboolean | nullhasMonitorsboolean | nullhasProfilesboolean | nullhasReplaysboolean | nullhasFeedbacksboolean | nullhasFlagsboolean | nullhasNewFeedbacksboolean | nullhasSessionsboolean | nullhasInsightsHttpboolean | nullhasInsightsDbboolean | nullhasInsightsAssetsboolean | nullhasInsightsAppStartboolean | nullhasInsightsScreenLoadboolean | nullhasInsightsVitalsboolean | nullhasInsightsCachesboolean | nullhasInsightsQueuesboolean | nullhasInsightsAgentMonitoringboolean | nullhasInsightsMCPboolean | nullhasLogsboolean | nullhasTraceMetricsboolean | nullteamobject | nullteamsarray | nullavatarobject | nullorganizationobject | nulllatestReleaseobject | nulloptionsobject | nulldigestsMinDelayinteger | nulldigestsMaxDelayinteger | nullresolveAgeinteger | nulldataScrubberboolean | nullsafeFieldsarray | nullsensitiveFieldsarray | nullverifySSLboolean | nullscrubIPAddressesboolean | nullscrapeJavaScriptboolean | nullallowedDomainsarray | nullprocessingIssuesinteger | nullsecurityTokenstring | nullsubjectPrefixstring | nulldataScrubberDefaultsboolean | nullstoreCrashReportsboolean | integer | nullsubjectTemplatestring | nullsecurityTokenHeaderstring | nullgroupingConfigstring | nullgroupingEnhancementsstring | nullderivedGroupingEnhancementsstring | nullsecondaryGroupingExpiryinteger | nullsecondaryGroupingConfigstring | nullfingerprintingRulesstring | nullpluginsarray | nullplatformsarray | nulldefaultEnvironmentstring | nullrelayPiiConfigstring | nullbuiltinSymbolSourcesarray | nulldynamicSamplingBiasesarray | nullsymbolSourcesstring | nullisDynamicallySampledboolean | nullautofixAutomationTuningstring | nullseerScannerAutomationboolean | nullhighlightTagsarray | nullhighlightContextobject | nullhighlightPresetobject | nulldebugFilesRolestring | null