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

# Replay deliveries in a time range

> Requires the `platform:webhooks:manage` scope (as an M2M scope or a user permission).

Reset succeeded or dead deliveries created in the given range back to pending for re-sending. Use after receiver downtime to recover missed events; receivers deduplicate by the X-Keystone-Delivery-Id header. The range may span at most 7 days and one call resets at most 200 deliveries, oldest first: repeat the call until reset_count comes back below that number.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/platforms/me/webhooks/{endpoint_id}/deliveries/replay
openapi: 3.1.0
info:
  title: Keystone API
  description: Settlement orchestration API for tokenized Real-World Assets (RWAs).
  version: 0.9.0
  x-keystone-api-contract-version: 0.9.0
  x-keystone-source-revision: c094c5ec38de81d550cde98e6366efaac99cffea
servers:
  - url: https://api-staging.keystoneos.xyz
    description: Staging (sandbox)
  - url: https://api.keystoneos.xyz
    description: Production
security:
  - bearerAuth: []
tags:
  - name: health
    description: Health and version checks.
  - name: platforms
    description: Register and manage your platform profile.
  - name: environments
    description: Manage platform environments (sandbox, production).
  - name: settlement-templates
    description: View and manage settlement templates.
  - name: settlements
    description: Initiate, monitor, and manage settlements.
  - name: sessions
    description: Create and manage browser-safe session tokens for frontend widgets.
  - name: instructions
    description: Submit and manage settlement instructions.
  - name: invitations
    description: Invite team members to your platform.
  - name: members
    description: Manage platform team members and roles.
  - name: webhooks
    description: Configure webhook endpoints for real-time event notifications.
  - name: security
    description: IP allowlisting and API access controls.
  - name: activity
    description: Audit trail of platform actions.
  - name: dashboard
    description: Dashboard metrics and statistics.
  - name: callbacks
    description: Provider callback handlers (internal).
  - name: alchemy-webhooks
    description: Alchemy blockchain event webhooks (internal).
  - name: chains
    description: Supported blockchain networks for settlement.
  - name: admin
    description: KeyStone internal administration endpoints.
  - name: admin-platforms
    description: Admin platform management.
  - name: admin-settlements
    description: Admin settlement oversight and intervention.
  - name: admin-compliance
    description: Admin compliance check management.
  - name: admin-activity
    description: Admin system-wide activity logs.
  - name: admin-webhooks
    description: Admin webhook diagnostics.
  - name: internal
    description: Keystone-internal worker endpoints.
  - name: internal-compliance
    description: Internal compliance engine endpoints.
paths:
  /v1/platforms/me/webhooks/{endpoint_id}/deliveries/replay:
    post:
      tags:
        - webhooks
      summary: Replay deliveries in a time range
      description: >-
        Requires the `platform:webhooks:manage` scope (as an M2M scope or a user
        permission).


        Reset succeeded or dead deliveries created in the given range back to
        pending for re-sending. Use after receiver downtime to recover missed
        events; receivers deduplicate by the X-Keystone-Delivery-Id header. The
        range may span at most 7 days and one call resets at most 200
        deliveries, oldest first: repeat the call until reset_count comes back
        below that number.
      operationId: >-
        replay_webhook_deliveries_v1_platforms_me_webhooks__endpoint_id__deliveries_replay_post
      parameters:
        - name: endpoint_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Endpoint Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WebhookReplayRange'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookRedeliveryResult'
        '404':
          description: Webhook endpoint not found.
        '422':
          description: The requested range is inverted or exceeds the window ceiling.
components:
  schemas:
    WebhookReplayRange:
      properties:
        from_at:
          type: string
          format: date-time
          title: From At
        to_at:
          type: string
          format: date-time
          title: To At
      type: object
      required:
        - from_at
        - to_at
      title: WebhookReplayRange
      description: Time range whose non-pending deliveries should be re-sent.
    WebhookRedeliveryResult:
      properties:
        reset_count:
          type: integer
          title: Reset Count
      type: object
      required:
        - reset_count
      title: WebhookRedeliveryResult
      description: Outcome of resetting delivery rows back to pending.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Auth0 JWT access token. See
        [Authentication](/getting-started/authentication) for details.

````