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

# Redeliver an event

> Queues a fresh delivery to every subscribed destination within the 30 day window. Optional JSON body `{ "event_destination": "ed_…" }` limits it to one destination.



## OpenAPI

````yaml /openapi/v2.json post /events/{id}/redeliver
openapi: 3.1.0
info:
  title: Redbark API
  version: 2026-10-01.wattle
  description: >-
    Everything a user can do in the dashboard, by API key. Send
    `Redbark-Version` on every request; see the conventions guide for ids,
    lists, errors and idempotency.
servers:
  - url: https://api.redbark.com/v2
security:
  - Bearer: []
    RedbarkVersion: []
tags:
  - name: Account
    description: The authenticated account, its plan and the key in use.
  - name: API keys
    description: Create, scope, rotate and revoke API keys.
  - name: Connections
    description: Linked banks and brokerages, and their lifecycle.
  - name: Consents
    description: Open Banking consents behind each connection.
  - name: Accounts
    description: Bank and brokerage accounts, live balances and details.
  - name: Transactions
    description: Transactions read live from the provider.
  - name: Holdings
    description: Brokerage positions.
  - name: Trades
    description: Brokerage trade history.
  - name: Categories
    description: The category taxonomy and provider categories.
  - name: Syncs
    description: Syncs from accounts to destinations.
  - name: Sync runs
    description: Individual sync executions.
  - name: Rules
    description: Rulesets and rules that transform transactions during a sync.
  - name: Destinations
    description: 'Where synced data lands: Sheets, Airtable, Notion, YNAB, webhooks.'
  - name: Link sessions
    description: Hosted flows that connect a bank or brokerage.
  - name: Destination links
    description: Hosted flows that authorise a destination.
  - name: Institutions
    description: Banks available to link.
  - name: Event destinations
    description: Endpoints that receive signed events.
  - name: Events
    description: What happened, and redelivery.
paths:
  /events/{id}/redeliver:
    post:
      tags:
        - Events
      summary: Redeliver an event
      description: >-
        Queues a fresh delivery to every subscribed destination within the 30
        day window. Optional JSON body `{ "event_destination": "ed_…" }` limits
        it to one destination.
      operationId: redeliver_event
      parameters:
        - schema:
            type: string
            description: The id of the object.
            example: evt_2Hj4Kl6mNp8qRs0tUv2wXy
          required: true
          description: The id of the object.
          name: id
          in: path
      responses:
        '202':
          description: The event with the new deliveries
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Event'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Key lacks a scope, plan lacks the feature, or IP not allowed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: No such resource
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '409':
          description: State conflict or Idempotency-Key conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Rate limited; see Retry-After
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal error; quote request_id to support
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Event:
      type: object
      properties:
        id:
          type: string
          example: evt_2Hj4Kl6mNp8qRs0tUv2wXy
        object:
          type: string
          enum:
            - event
        type:
          type: string
        created:
          type: string
          format: date-time
          example: '2026-08-21T09:30:00.000Z'
        livemode:
          type: boolean
        reason:
          type: object
          properties:
            type:
              type: string
              enum:
                - request
                - schedule
                - provider
                - system
            request:
              type:
                - object
                - 'null'
              properties:
                id:
                  type: string
                idempotency_key:
                  type:
                    - string
                    - 'null'
              required:
                - id
                - idempotency_key
          required:
            - type
            - request
        related_object:
          type: object
          properties:
            id:
              type: string
            type:
              type: string
            url:
              type: string
          required:
            - id
            - type
            - url
        data:
          type:
            - object
            - 'null'
          additionalProperties: {}
        changes:
          type:
            - object
            - 'null'
          additionalProperties: {}
        deliveries:
          type:
            - array
            - 'null'
          items:
            type: object
            properties:
              id:
                type: string
              event_destination:
                type: string
              status:
                type: string
                enum:
                  - pending
                  - succeeded
                  - failed
                  - abandoned
              attempts:
                type: integer
              next_attempt_at:
                type:
                  - string
                  - 'null'
                format: date-time
                example: '2026-08-21T09:30:00.000Z'
              last_attempt_at:
                type:
                  - string
                  - 'null'
                format: date-time
                example: '2026-08-21T09:30:00.000Z'
              last_status_code:
                type:
                  - integer
                  - 'null'
              last_error:
                type:
                  - string
                  - 'null'
            required:
              - id
              - event_destination
              - status
              - attempts
              - next_attempt_at
              - last_attempt_at
              - last_status_code
              - last_error
          description: Only on GET /v2/events/{id}
      required:
        - id
        - object
        - type
        - created
        - livemode
        - reason
        - related_object
        - data
        - changes
        - deliveries
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            type:
              type: string
              enum:
                - invalid_request_error
                - authentication_error
                - permission_error
                - rate_limit_error
                - idempotency_error
                - upstream_error
                - api_error
            code:
              type: string
            message:
              type: string
            param:
              type:
                - string
                - 'null'
            doc_url:
              type: string
            request_id:
              type: string
          required:
            - type
            - code
            - message
            - param
            - doc_url
            - request_id
      required:
        - error
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: API key
      description: 'Authorization: Bearer rbk_live_...'
    RedbarkVersion:
      type: apiKey
      in: header
      name: Redbark-Version
      description: >-
        The API release your integration is built against, e.g.
        2026-10-01.wattle. Required on every request.

````