> ## Documentation Index
> Fetch the complete documentation index at: https://docs.synq.io/llms.txt
> Use this file to discover all available pages before exploring further.

# ListDeliveries

> List deliveries, newest event first. With no `integration_id` this is the
 whole workspace's feed; with one it is that integration's.



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/deliveries/v1
openapi: 3.1.0
info:
  version: '1.0'
  title: SYNQ
servers:
  - url: https://developer.synq.io
  - url: https://api.us.synq.io
  - url: https://api.au.synq.io
security:
  - bearerAuth: []
tags:
  - name: synq.deliveries.v1.DeliveriesService
    description: >-
      DeliveriesService reports what was sent to your notification integrations
      —
       webhooks, PagerDuty, Opsgenie — and what came back.

       It answers the three questions an integration owner has. "Did this event
       reach my endpoint": list the deliveries for an event id and read the outcome
       of each. "Why did my endpoint reject it": read the attempts, which carry the
       request as it was sent and the response as it came back. "Why did I get
       nothing at all": every delivery that sent nothing records a reason, so a
       silent integration can be explained rather than guessed at.

       Deliveries are kept for 90 days. Credential-bearing header values are never
       returned, on either side of an attempt — see `Header`.
  - name: synq.savedviews.v1.SavedViewsService
    description: >-
      SavedViewsService manages saved views — named, reusable selections over
      your
       entities (and other surfaces) with display configuration, sharing and
       per-user pinning.

       A saved view is owned by the user who created it. It can be kept private,
       shared with the whole workspace, or granted to specific users. Reads return,
       for the calling user, how each view relates to them (mine / shared / granted)
       and what they are allowed to do with it. Workspace administrators can manage
       any view in the workspace.
  - name: synq.issues.issues.v1.IssuesService
    description: IssuesService is a service for managing Issues.
  - name: synq.issues.v2.IssuesService
    description: IssuesService is a service for managing Issues.
  - name: synq.integrations.v1.IntegrationsService
    description: |-
      IntegrationsService manages connections from Coalesce Quality to your data
       systems (warehouses, databases, and transformation tools).

       Concurrency: every integration carries an opaque `etag`. Read it from
       `GetIntegration` / `ListIntegrations`, then pass it back on
       `UpdateIntegration` / `DeleteIntegration` to ensure you modify the version you
       last saw. A stale etag is rejected with ABORTED (HTTP 409). Omit
       the etag for last-write-wins.

       Quota: each workspace has a limit on the number of integrations. Creating
       beyond the limit is rejected with RESOURCE_EXHAUSTED.

       Secrets: credential fields (passwords, tokens, keys) are write-only. They are
       masked (returned empty) on every read. On update, omit a secret to keep it,
       send a new value to rotate it, or send an explicit empty string to clear it
       (where the field is `optional`).
  - name: synq.queries.v1.NLQueryService
    description: >-
      NLQueryService generates structured Query protos from natural language
      descriptions using an LLM.
  - name: synq.queries.v1.QueriesService
    description: |-
      QueriesService compiles and evaluates ResolverQL — the compact text query
       language used across Coalesce Quality to select entities — over the public
       API.

       ResolverQL is a string DSL (for example `with_type("TABLE")` or
       `in_folder(...)`); a structured `synq.queries.v1.Query` is its parsed,
       machine-readable form. This service is the bridge between the two and the
       read-only execution surface for both:
         - `TranslateResolverQl` compiles a ResolverQL expression into a structured
           `Query` without evaluating it — inspect it, validate it, or reuse it as a
           filter on another API (entity listing, folder browsing, ...).
         - `ResolveQuery` compiles a ResolverQL expression (or takes an
           already-structured `Query`), evaluates it against the catalog, and
           returns the matched entity ids. This is the general author -> resolve
           loop.
  - name: synq.monitors.predictions.v1.MonitorPredictionsService
    description: Access to anomaly detection model predictions and raw metric timeseries.
  - name: synq.monitors.info.v1.MonitorInfoService
  - name: synq.monitors.history.v1.HistoryService
  - name: synq.monitors.automated_monitors.v1.DeploymentRulesService
  - name: synq.monitors.custom_monitors.v1.CustomMonitorsService
  - name: synq.entities.executions.v2.EntityExecutionsService
    description: >-
      EntityExecutionsService provides read-only access to entity execution
      history.
       This service allows customers to retrieve information about all executions that happened on their entities,
       including execution status, timing, and messages.

       Use cases:
       - Retrieve execution history for specific entities
       - Filter executions by time range, status, or execution type
       - Get aggregated summaries of execution activity
       - Track execution trends and patterns
  - name: synq.entities.executions.v1.EntityExecutionsService
    description: 'Deprecated: Use [synq.entities.custom.v1.EntityExecutionsService] instead'
  - name: synq.entities.lineage.v1.LineageService
    description: |-
      LineageService allows you to fetch:
       * Entity level lineage from a starting point of one or more entities.
       * Column Level lineage from a starting point of multiple columns of a single entity.
  - name: synq.entities.checks.v1.ChecksCategoriesService
    description: |-
      ChecksCategoriesService lets workspace admins set explicit category
       overrides on individual checks. An explicit category is the
       authoritative category for a check — it takes precedence over the
       categories computed by the workspace's categorisation rules.

       It is a public API so customers can manage check categories
       programmatically; the same service is also mounted on the internal
       API. The workspace and the acting identity are always taken from the
       request context, never from the payload.
  - name: synq.entities.constraints.v1.TableConstraintsService
    description: >-
      TableConstraintsService provides access to table constraint and index
      information.
  - name: synq.entities.sql_insights.v1.SqlInsightsService
    description: >-
      SqlInsightsService exposes analytical information about the SQL used
      across a
       workspace's entities. It answers questions such as "which SQL constructs are
       used in my warehouse, and how often" and "what SQL constructs does this
       specific entity use", without requiring the caller to re-parse any SQL.
  - name: synq.entities.status.v1.EntityIncidentsService
    description: EntityIncidentsService is the service which retrieves entity status.
  - name: synq.entities.status.v1.EntityIssuesService
    description: EntityIssuesService is the service which retrieves entity issues status.
  - name: synq.entities.entities.v1.EntitiesService
    description: EntitiesService is a service for retriving any entity.
  - name: synq.entities.orchestration.v1.OrchestrationService
    description: >-
      OrchestrationService provides information about orchestration
      relationships between entities.
       This includes relationships between Airflow tasks and transformation models (dbt, SQLMesh),
       as well as task-to-task dependencies.
  - name: synq.entities.annotations.v1.AnnotationsService
    description: >-
      AnnotationsService provides operations for managing and querying entity
      annotations.
       Annotations are key-value pairs that can be attached to entities for categorization and filtering.
  - name: synq.entities.custom.v1.RelationshipsService
    description: >-
      RelationshipsService allow management of relationships between entities.
      Relationships can
       be created, updated, and deleted between 2 custom entities, or between a custom entity and Coalesce Quality native entity.enum
       There is no option to create relationships between 2 Coalesce Quality native entities (dbt model, BI dashboard, etc.).
  - name: synq.entities.custom.v1.EntityExecutionsService
  - name: synq.entities.custom.v1.FeaturesService
  - name: synq.entities.custom.v1.EntitiesService
    description: >-
      custom.EntitiesService is a service for managing custom entities. Entities
      can represent
       various data platform concepts such as services, consumers, applications or data pipelines
       that are not natively available in Coalesce Quality.

       Entities are identified by a unique identifier and can be created, updated, read and deleted.
  - name: synq.entities.custom.v1.GroupsService
    description: >-
      It eliminates the need to keep state on client side to remember which
      assets were already created
       and which should be deleted. The server will keep track of the current state of the group and client
       can always send the intended new state. The server will calculate the diff and entities that are
       no longer present in the group will be removed.

       Example:
       1. group has entities A, B, C at time t1
       2. client sends group with entities B, C, D at time t2
       3. server will remove entity A from the system and update the current state of the group to B, C, D

       The service is designed to be idempotent and can be called multiple times with the same state without
       causing any side effects.
  - name: synq.entities.custom.v1.TypesService
    description: TypesService is a service for managing custom entity types.
  - name: synq.entities.custom.v1.ChecksRelationshipsService
  - name: synq.entities.folders.v1.FoldersService
    description: >-
      FoldersService discovers and browses the folder / containment hierarchy of
      the
       catalog: the roots data hangs from, the sub-folders under any folder, the
       folders a given entity lives in, and the entities contained in a folder.

       It is a read / navigation surface, not folder management — there are no
       create, move, or delete operations.

       Addressing: every folder has an opaque `folder_entity_id` (round-trip it
       verbatim) and a structured `FolderRef{root_entity_id, folders[]}` (the
       human-friendly form). Entities — both folder members and the ids you pass to
       `GetFolderOf` — are named by their opaque entity id, the same id used across
       the rest of the entities API.

       Depth footgun: membership is SHALLOW by default. `Browse` returns only the
       direct children of a folder, and `ListMembers` returns only the entities
       placed directly in the folder. Set `deep = true` (or raise `Browse.depth`) to
       recurse into sub-folders.
  - name: synq.entities.schemas.v1.SchemaMismatchesService
    description: >-
      SchemaMismatchesService provides access to schema drift information
      between
       data platform tables and their definitions (e.g., dbt models).
  - name: synq.entities.schemas.v1.SchemasService
    description: EntitiesService is a service for retriving any entity.
  - name: synq.entities.resolve.v1.IdentifierResolveService
    description: >-
      IdentifierResolveService resolves identifiers to their Coalesce Quality
      paths and identities.
  - name: synq.entities.changes.v1.ChangesService
    description: >-
      ChangesService provides functionality to track and retrieve all types of
      changes to data entities.

       This unified service returns ALL change types for an entity:
       - Git commits: Changes to code files (dbt models, SQL files) tracked in version control
       - Schema changes: Database schema modifications (columns added/removed/changed)
       - SQL definition changes: View/materialized view definition updates detected by Coalesce Quality

       Changes are returned with structured metadata including:
       - For git commits: structured statistics (directories, file types, top changes)
       - For schema changes: detailed column-level diffs
       - For SQL changes: before/after SQL definitions

       Use cases:
       - "What changed in the last week for table X?" → Returns git commits, schema changes, SQL changes
       - "Show me all commits affecting this dbt model" → Returns git commits with lineage context
       - "What schema changes happened to this table?" → Returns schema changes detected by Coalesce Quality
  - name: synq.entities.impact.v1.ImpactService
  - name: synq.entities.coordinates.v1.DatabaseCoordinatesService
    description: >-
      DatabaseCoordinatesService is a service for getting database coordinates
      of Entities.
  - name: synq.entities.code.v1.CodeService
    description: >-
      CodeService is a service for retrieving code associated with entities in
      the system.
       It provides functionality to access and manage code artifacts such as SQL queries,
       Python scripts, dbt models, and other code configurations that are part of Coalesce Quality entities.
  - name: synq.alerts.services.v1.AlertsService
    description: AlertsService provides operations for managing alert configurations.
  - name: synq.auth.iam.v1.IamService
  - name: synq.datachecks.testsuggestions.v1.TestSuggestionsService
  - name: synq.datachecks.v1.TriggerService
    description: TriggerService provides synchronous execution of datachecks on entities.
  - name: synq.datachecks.sqltests.v1.SqlTestsService
    description: SqlTestsService is a service for managing SqlTests.
  - name: synq.extensions.atlan.integrations.v1.AtlanIntegrationService
  - name: synq.extensions.atlan.workflows.v1.AtlanWorkflowService
  - name: synq.extensions.atlan.provider.v1.AtlanProviderService
  - name: synq.schedule.v1.ScheduleService
    description: ScheduleService provides schedule evaluation utilities.
  - name: synq.git.commits.v1.CommitsService
  - name: synq.dataproducts.v2.DataproductsService
    description: |-
      DataproductsService manages data products — named, owned groupings of data
       assets with a membership definition, a priority and an optional folder.

       Ids are opaque UUIDs supplied by the caller, which makes writes idempotent
       (a retried create converges instead of duplicating). Mutable fields are
       optional on Upsert: a field that is set is written, a field that is omitted is
       left unchanged. Pass the `etag` you last read to guard against overwriting a
       concurrent edit.

       A data product is a leaf in the reference graph — its definition may not
       reference another data product or domain — so membership resolution always
       terminates.
  - name: synq.dataproducts.v1.DataproductsService
    description: DataproductsService can be used to manage data products.
  - name: synq.agent.sre.v1.TriageService
    description: >-
      Service for managing issue triage operations, allowing LLM agents to
      conclude investigations
       and record evidence during the triage process.
  - name: synq.agent.sre.v1.LlmService
    description: Service for evaluating LLM requests and producing structured output.
  - name: synq.agent.sre.v1.FeatureRequestService
    description: >-
      FeatureRequestService allows MCP clients to submit feature requests when
      users encounter
       missing capabilities. This is a last-resort service — it should only be used when no
       existing tool can fulfill the user's request.
  - name: synq.agent.recon.v1.SuiteDeploymentService
    description: |-
      SuiteDeploymentService is the platform plane of reconciliation.

       SuiteConfigService is the developer/authoring sandbox (edit, version, run
       ad-hoc with your own credentials — preview-only, no Entity, no Run, no
       Issue). A deployment is what SYNQ actually runs on the workspace's behalf:
       a frozen snapshot of a suite config, mapped to workspace-level SYNQ
       integrations, optionally scheduled or triggerable by API.

       Identity: every deployment has a stable deployment_id (UUIDv7) assigned on
       first promote. It survives re-promotes, schedule/mapping changes, and
       pause/resume. Downstream AssetCommand / RunCommand publication keys off
       deployment_id so Entity identity does not fragment on promote churn.
  - name: synq.agent.recon.v1.YamlService
    description: >-
      YamlService provides stateless conversion between YAML config format and
      proto.
       This is useful for UI editors that need to display/edit suite configs as YAML.
  - name: synq.ingest.cloudwatch.v1.CloudwatchService
  - name: synq.ingest.airflow.v1.AirflowLogsService
  - name: synq.ingest.openlineage.v1.OpenlineageService
  - name: synq.ingest.dwh.v1.DwhService
  - name: synq.owners.v1.OwnersService
    description: |-
      OwnersService manages owners and their ownerships — the "alert routing as
       code" surface. An owner is a named responsible party with notification
       channels (contacts); an ownership assigns a set of assets to an owner and
       configures the alerts routed to it. Owner is the resource, ownership its
       sub-resource: an ownership is meaningless without its owner, and deleting an
       owner deletes its ownerships.

       Ids are opaque UUIDs supplied by the caller, which makes writes idempotent (a
       retried create converges instead of duplicating). Mutable fields are optional
       on the Upsert calls: a set field is written, an omitted field is left
       unchanged. Pass the `etag` you last read to guard against overwriting a
       concurrent edit.

       Related: `synq.dataproducts.v2.DataproductsService` (an ownership can own a
       whole data product), `synq.alerts.v1.AlertsService` (how the configured alerts
       are reported), and `synq.users.v1.UsersService` (resolve the users behind
       `UserContact` and Slack/Teams mentions).
  - name: synq.domains.v2.DomainsService
    description: >-
      DomainsService manages data domains — named areas of ownership that group
      the
       assets, data products and sub-domains belonging to one part of the business.

       Ids are opaque UUIDs supplied by the caller, which makes writes idempotent
       (a retried create converges instead of duplicating). Mutable fields are
       optional on Upsert: a field that is set is written, a field that is omitted is
       left unchanged. Pass the `etag` you last read to guard against overwriting a
       concurrent edit.

       A domain may contain other domains and data products, so membership resolution
       is recursive. Every write that adds such a reference — including a change of
       `parent_id` — is rejected if it would close a loop, so a definition can always
       be resolved in finite time.
  - name: synq.domains.members.v1.DomainMembersService
    description: DomainMembersService can be used to manage domain memberships.
  - name: synq.domains.v1.DomainsService
    description: DomainsService can be used to manage domains.
  - name: synq.platforms.v1.PlatformsService
    description: PlatformsService is a service for managing Platforms and Integrations.
  - name: synq.incidents.v1.IncidentsService
    description: IncidentsService is a service for managing Incidents.
paths:
  /api/deliveries/v1:
    get:
      tags:
        - synq.deliveries.v1.DeliveriesService
      summary: ListDeliveries
      description: >-
        List deliveries, newest event first. With no `integration_id` this is
        the
         whole workspace's feed; with one it is that integration's.
      operationId: synq.deliveries.v1.DeliveriesService.ListDeliveries
      parameters:
        - name: integrationId
          in: query
          description: Restrict to one integration. Omit for the whole workspace's feed.
          schema:
            type: string
            title: integration_id
            pattern: >-
              ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
            description: Restrict to one integration. Omit for the whole workspace's feed.
        - name: eventId
          in: query
          description: >-
            Restrict to one event — every integration it reached, and what each
            did with
             it. This is the `event_id` from a received webhook payload.
          schema:
            type: string
            title: event_id
            pattern: >-
              ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
            description: >-
              Restrict to one event — every integration it reached, and what
              each did with
               it. This is the `event_id` from a received webhook payload.
        - name: subjectId
          in: query
          description: >-
            Restrict to the issue or incident the delivery was about. Takes the
            same
             identifier the rest of the API uses for that object.
          schema:
            type: string
            title: subject_id
            maxLength: 200
            description: >-
              Restrict to the issue or incident the delivery was about. Takes
              the same
               identifier the rest of the API uses for that object.
        - name: eventTypes
          in: query
          description: >-
            Restrict to these event types, by `synq.webhooks.v1.Event.EventType`
            name.
             Empty matches every type.
          schema:
            type: array
            items:
              type: string
              maxLength: 100
              maxItems: 20
            title: event_types
            maxItems: 20
            description: >-
              Restrict to these event types, by
              `synq.webhooks.v1.Event.EventType` name.
               Empty matches every type.
        - name: outcomes
          in: query
          description: Restrict to these outcomes. Empty matches every outcome.
          schema:
            type: array
            items:
              $ref: '#/components/schemas/synq.deliveries.v1.Outcome'
            title: outcomes
            maxItems: 5
            description: Restrict to these outcomes. Empty matches every outcome.
        - name: statusCodes
          in: query
          description: >-
            Restrict to deliveries whose most recent attempt returned one of
            these HTTP
             statuses. Empty matches every status.
          schema:
            type: array
            items:
              type: integer
              maximum: 599
              minimum: 100
              format: int32
              maxItems: 20
            title: status_codes
            maxItems: 20
            description: >-
              Restrict to deliveries whose most recent attempt returned one of
              these HTTP
               statuses. Empty matches every status.
        - name: since.seconds
          in: query
          description: |-
            Represents seconds of UTC time since Unix epoch
             1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
             9999-12-31T23:59:59Z inclusive.
          schema:
            type:
              - integer
              - string
            title: seconds
            format: int64
            description: |-
              Represents seconds of UTC time since Unix epoch
               1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
               9999-12-31T23:59:59Z inclusive.
        - name: since.nanos
          in: query
          description: >-
            Non-negative fractions of a second at nanosecond resolution.
            Negative
             second values with fractions must still have non-negative nanos values
             that count forward in time. Must be from 0 to 999,999,999
             inclusive.
          schema:
            type: integer
            title: nanos
            format: int32
            description: >-
              Non-negative fractions of a second at nanosecond resolution.
              Negative
               second values with fractions must still have non-negative nanos values
               that count forward in time. Must be from 0 to 999,999,999
               inclusive.
        - name: pagination.cursor
          in: query
          description: >-
            Opaque cursor token for the next page of results. If not provided,
            returns the first page.
             This is an encoded token that should be passed as-is from the previous PageInfo.last_id.
          schema:
            type: string
            title: cursor
            description: >-
              Opaque cursor token for the next page of results. If not provided,
              returns the first page.
               This is an encoded token that should be passed as-is from the previous PageInfo.last_id.
        - name: pagination.pageSize
          in: query
          description: >-
            Maximum number of items to return in a single page. If not provided,
            defaults vary per API.
          schema:
            type: integer
            title: page_size
            minimum: 0
            format: int32
            description: >-
              Maximum number of items to return in a single page. If not
              provided, defaults vary per API.
        - name: includeRouting
          in: query
          description: >-
            Also return `matched_alert_configs` and `correlation_key` on each
            delivery.
             Off by default: it costs a second read per delivery, and a feed rarely needs
             it. `BatchGetDeliveries` always returns them.
          schema:
            type: boolean
            title: include_routing
            description: >-
              Also return `matched_alert_configs` and `correlation_key` on each
              delivery.
               Off by default: it costs a second read per delivery, and a feed rarely needs
               it. `BatchGetDeliveries` always returns them.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/synq.deliveries.v1.ListDeliveriesResponse'
components:
  schemas:
    synq.deliveries.v1.Outcome:
      type: string
      title: Outcome
      enum:
        - OUTCOME_UNSPECIFIED
        - OUTCOME_PENDING
        - OUTCOME_DELIVERED
        - OUTCOME_FAILED
        - OUTCOME_SKIPPED
        - OUTCOME_NOT_ROUTED
      description: >-
        Outcome is what became of a delivery. It is a state the service
        maintains,
         not something to recompute from status codes: a 500 that will be retried and
         a 500 that exhausted the retries are the same status and different outcomes.
    synq.deliveries.v1.ListDeliveriesResponse:
      type: object
      properties:
        deliveries:
          type: array
          items:
            $ref: '#/components/schemas/synq.deliveries.v1.Delivery'
          description: The matching deliveries, newest event first.
        pageInfo:
          $ref: '#/components/schemas/synq.v1.PageInfo'
          description: Cursor for the next page.
      title: ListDeliveriesResponse
      additionalProperties: false
    synq.deliveries.v1.Delivery:
      type: object
      properties:
        id:
          type: string
          description: >-
            Opaque identifier of this delivery, composed by the service. Pass it
            back to
             `BatchGetDeliveries`, `ListAttempts` and `Redeliver`; do not parse it or
             build one yourself, as its composition can change.
        eventId:
          type: string
          description: >-
            Identifier of the event this delivery carries, shared by every
            integration
             the same event reached. Filter `ListDeliveries` on it to answer "which of my
             integrations did this event reach, and what did each of them do with it".
             It is also the `event_id` in the webhook payload a receiver got, so a
             customer holding a received webhook can find its delivery from it.
        integrationId:
          type: string
          description: The integration this delivery was addressed to.
        eventType:
          type: string
          description: >-
            Name of the `synq.webhooks.v1.Event.EventType` the delivery carries
            — for
             example `EVENT_TYPE_ISSUE_CREATED`. Empty when the event has no
             representation for this kind of integration.
        subject:
          $ref: '#/components/schemas/synq.deliveries.v1.DeliverySubject'
          description: >-
            What the event is about, so a delivery can be found from the issue
            or
             incident a question is asked about.
        createdAt:
          $ref: '#/components/schemas/google.protobuf.Timestamp'
          description: >-
            When the event happened. This is the event time, not the time it was
            sent —
             `last_attempt_at` is that. Deliveries are listed newest event first.
        outcome:
          $ref: '#/components/schemas/synq.deliveries.v1.Outcome'
          description: What became of the delivery.
        skipReason:
          $ref: '#/components/schemas/synq.deliveries.v1.SkipReason'
          description: >-
            Why nothing was sent. Set exactly when `outcome` is
            `OUTCOME_SKIPPED` or
             `OUTCOME_NOT_ROUTED`.
        attemptCount:
          type: integer
          format: int32
          description: >-
            How many attempts have been made so far, across every request this
            delivery
             produced. Zero for a delivery that sent nothing, and for one still queued.
        lastAttemptAt:
          $ref: '#/components/schemas/google.protobuf.Timestamp'
          description: When the most recent attempt started. Unset until the first attempt.
        nextAttemptAt:
          $ref: '#/components/schemas/google.protobuf.Timestamp'
          description: >-
            When the next attempt is due. Set only while `outcome` is
            `OUTCOME_PENDING`;
             an attempt can still start slightly later than this under load.
        duration:
          $ref: '#/components/schemas/google.protobuf.Duration'
          description: >-
            How long the attempts took in total. Useful as "how long did this
            take to
             land" rather than as a measure of one request.
        statusCode:
          type: integer
          format: int32
          description: >-
            HTTP status of the most recent attempt. Zero when no response was
            received —
             either nothing has been sent yet, or the request failed before one arrived,
             in which case the attempt carries the transport error.
        redeliveryOf:
          type: string
          description: >-
            The delivery this one replays, set when it was produced by
            `Redeliver`.
             Empty for a first delivery.
        matchedAlertConfigs:
          type: array
          items:
            $ref: '#/components/schemas/synq.deliveries.v1.MatchedAlertConfig'
          description: >-
            Which alert configurations selected this integration for this event
            —
             the answer to "why did I get this". More than one when several
             configurations match the same event, because their alerts are merged into a
             single delivery per integration. Empty for deliveries not produced by
             alerting, such as a test delivery.

             Always populated by `BatchGetDeliveries`; populated by `ListDeliveries`
             only when the request sets `include_routing`.
        correlationKey:
          type: string
          description: >-
            The key the destination deduplicates on — a PagerDuty `dedup_key`,
            an
             Opsgenie `alias` — so an incident in your own tool can be traced back to the
             delivery that opened it. Empty for destinations that create no such object.

             Populated on the same terms as `matched_alert_configs`.
      title: Delivery
      additionalProperties: false
      description: >-
        Delivery is one event as it was addressed to one integration: what it
        was
         about, whether it went, and what happened when it did.

         One event reaches every integration subscribed to it, so an event that fans
         out to three integrations produces three deliveries. They share `event_id`
         and each has its own `id`.
    synq.v1.PageInfo:
      type: object
      properties:
        totalCount:
          type: integer
          format: int32
          description: >-
            Total number of items matching the request. May not be available for
            cursor-based pagination
             where the total is unknown or expensive to compute.
             Deprecated: most of the APIs which require pagination don't know the total count.
          deprecated: true
        count:
          type: integer
          format: int32
          description: Number of items returned in this response.
        lastId:
          type: string
          description: >-
            Opaque cursor token for fetching the next page of results. Pass this
            value as the cursor
             in the next Pagination request to continue pagination. Empty if there are no more pages.
      title: PageInfo
      additionalProperties: false
    synq.deliveries.v1.DeliverySubject:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/synq.deliveries.v1.SubjectType'
          description: Which kind of object `id` refers to.
        id:
          type: string
          description: >-
            Identifier of the issue or incident, as the rest of the API uses it.
            For a
             test delivery this is the event id, since a test is about nothing else.
        title:
          type: string
          description: |-
            Title at the time the delivery was decided, kept so a delivery stays
             readable after the issue is renamed or closed.
        url:
          type: string
          description: Link to the object in the app. Empty when the subject has no page.
      title: DeliverySubject
      additionalProperties: false
      description: DeliverySubject is the object an event is about.
    google.protobuf.Timestamp:
      type: string
      examples:
        - '2023-01-15T01:30:15.01Z'
        - '2024-12-25T12:00:00Z'
      format: date-time
      description: >-
        A Timestamp represents a point in time independent of any time zone or
        local
         calendar, encoded as a count of seconds and fractions of seconds at
         nanosecond resolution. The count is relative to an epoch at UTC midnight on
         January 1, 1970, in the proleptic Gregorian calendar which extends the
         Gregorian calendar backwards to year one.

         All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap
         second table is needed for interpretation, using a [24-hour linear
         smear](https://developers.google.com/time/smear).

         The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By
         restricting to that range, we ensure that we can convert to and from [RFC
         3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.

         # Examples

         Example 1: Compute Timestamp from POSIX `time()`.

             Timestamp timestamp;
             timestamp.set_seconds(time(NULL));
             timestamp.set_nanos(0);

         Example 2: Compute Timestamp from POSIX `gettimeofday()`.

             struct timeval tv;
             gettimeofday(&tv, NULL);

             Timestamp timestamp;
             timestamp.set_seconds(tv.tv_sec);
             timestamp.set_nanos(tv.tv_usec * 1000);

         Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.

             FILETIME ft;
             GetSystemTimeAsFileTime(&ft);
             UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;

             // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
             // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
             Timestamp timestamp;
             timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));
             timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));

         Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.

             long millis = System.currentTimeMillis();

             Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
                 .setNanos((int) ((millis % 1000) * 1000000)).build();


         Example 5: Compute Timestamp from Java `Instant.now()`.

             Instant now = Instant.now();

             Timestamp timestamp =
                 Timestamp.newBuilder().setSeconds(now.getEpochSecond())
                     .setNanos(now.getNano()).build();


         Example 6: Compute Timestamp from current time in Python.

             timestamp = Timestamp()
             timestamp.GetCurrentTime()

         # JSON Mapping

         In JSON format, the Timestamp type is encoded as a string in the
         [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the
         format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z"
         where {year} is always expressed using four digits while {month}, {day},
         {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional
         seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),
         are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
         is required. A proto3 JSON serializer should always use UTC (as indicated by
         "Z") when printing the Timestamp type and a proto3 JSON parser should be
         able to accept both UTC and other timezones (as indicated by an offset).

         For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
         01:30 UTC on January 15, 2017.

         In JavaScript, one can convert a Date object to this format using the
         standard
         [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
         method. In Python, a standard `datetime.datetime` object can be converted
         to this format using
         [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
         the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
         the Joda Time's [`ISODateTimeFormat.dateTime()`](
         http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
         ) to obtain a formatter capable of generating timestamps in this format.
    synq.deliveries.v1.SkipReason:
      type: string
      title: SkipReason
      enum:
        - SKIP_REASON_UNSPECIFIED
        - SKIP_REASON_EVENT_TYPE_NOT_SUBSCRIBED
        - SKIP_REASON_EVENT_TYPE_UNSUPPORTED_BY_INTEGRATION
        - SKIP_REASON_NO_ACTION_FOR_LIFECYCLE_STATE
        - SKIP_REASON_INTEGRATION_NOT_FOUND
        - SKIP_REASON_INTEGRATION_DISABLED
        - SKIP_REASON_EMPTY_EVENT_SUBJECT
      description: >-
        SkipReason says why a delivery sent nothing. Every code path that
        declines to
         send names one, so an integration that appears silent can be explained rather
         than guessed at.

         It is an enum rather than a message we wrote once, so a caller can act on the
         reason: a not-subscribed event is fixed in the integration's settings, a
         disabled integration is fixed by enabling it, and an unsupported event type is
         not fixable at all.
    google.protobuf.Duration:
      type: string
      format: duration
      description: |-
        A Duration represents a signed, fixed-length span of time represented
         as a count of seconds and fractions of seconds at nanosecond
         resolution. It is independent of any calendar and concepts like "day"
         or "month". It is related to Timestamp in that the difference between
         two Timestamp values is a Duration and it can be added or subtracted
         from a Timestamp. Range is approximately +-10,000 years.

         # Examples

         Example 1: Compute Duration from two Timestamps in pseudo code.

             Timestamp start = ...;
             Timestamp end = ...;
             Duration duration = ...;

             duration.seconds = end.seconds - start.seconds;
             duration.nanos = end.nanos - start.nanos;

             if (duration.seconds < 0 && duration.nanos > 0) {
               duration.seconds += 1;
               duration.nanos -= 1000000000;
             } else if (duration.seconds > 0 && duration.nanos < 0) {
               duration.seconds -= 1;
               duration.nanos += 1000000000;
             }

         Example 2: Compute Timestamp from Timestamp + Duration in pseudo code.

             Timestamp start = ...;
             Duration duration = ...;
             Timestamp end = ...;

             end.seconds = start.seconds + duration.seconds;
             end.nanos = start.nanos + duration.nanos;

             if (end.nanos < 0) {
               end.seconds -= 1;
               end.nanos += 1000000000;
             } else if (end.nanos >= 1000000000) {
               end.seconds += 1;
               end.nanos -= 1000000000;
             }

         Example 3: Compute Duration from datetime.timedelta in Python.

             td = datetime.timedelta(days=3, minutes=10)
             duration = Duration()
             duration.FromTimedelta(td)

         # JSON Mapping

         In JSON format, the Duration type is encoded as a string rather than an
         object, where the string ends in the suffix "s" (indicating seconds) and
         is preceded by the number of seconds, with nanoseconds expressed as
         fractional seconds. For example, 3 seconds with 0 nanoseconds should be
         encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should
         be expressed in JSON format as "3.000000001s", and 3 seconds and 1
         microsecond should be expressed in JSON format as "3.000001s".
    synq.deliveries.v1.MatchedAlertConfig:
      type: object
      properties:
        alertConfigId:
          type: string
          description: Identifier of the alert configuration.
        name:
          type: string
          description: >-
            Its name when the delivery was decided, so the delivery stays
            attributable
             after the configuration is renamed or deleted.
        fqn:
          type: string
          description: Fully-qualified name, set only for configurations managed as code.
        ownershipId:
          type: string
          description: >-
            The ownership the configuration belongs to. Empty for
            workspace-level
             configurations.
        ownerPath:
          type: string
          description: >-
            The owner the integration was reached through. Empty when the
            configuration
             names the integration directly rather than routing to an owner.
      title: MatchedAlertConfig
      additionalProperties: false
      description: >-
        MatchedAlertConfig names one alert configuration that selected an
        integration
         for an event.
    synq.deliveries.v1.SubjectType:
      type: string
      title: SubjectType
      enum:
        - SUBJECT_TYPE_UNSPECIFIED
        - SUBJECT_TYPE_ISSUE
        - SUBJECT_TYPE_INCIDENT
        - SUBJECT_TYPE_DELIVERY_TEST
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````