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

# Retry a webhook delivery

> Queues a webhook delivery for an immediate retry by resetting it to pending and dispatching it without waiting for the next scheduled attempt. The delivery is resolved by its own ID scoped to the organization, so no subscription ID is needed in the path. Responds 202 Accepted as soon as the retry is queued; the actual POST happens asynchronously. Requires a Nevermined API key. Requires organization admin privileges. Requires the organization to be on the Premium tier or higher.



## OpenAPI

````yaml /api-reference/organizations-openapi.json post /organizations/{orgId}/webhooks/deliveries/{deliveryId}/retry
openapi: 3.0.0
info:
  title: Nevermined Organizations API
  description: >-
    Manage a Nevermined organization programmatically — members, tiers, groups &
    budgets, treasury wallets, customers, webhooks, analytics, and
    agent-discovery surfaces.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.sandbox.nevermined.app/api/v1
    description: Sandbox
  - url: https://api.live.nevermined.app/api/v1
    description: Live
security: []
tags:
  - name: Organizations
    x-group: General
    description: Organization settings, members & roles, and workspace context.
  - name: Organizations - Billing
    x-group: Billing
    description: Tiers, subscriptions, invoices, checkout, and the public tier catalog.
  - name: Groups
    x-group: Groups & Budgets
    description: Organization groups, per-group budgets, and shared payment methods.
  - name: Organizations - Wallets
    x-group: Wallets
    description: Custodial stablecoin treasury wallets.
  - name: Organizations - Customers
    x-group: Customers
    description: The white-label customer CRM (Enterprise).
  - name: Organizations - Analytics
    x-group: Analytics
    description: Revenue, MRR, usage, conversion, and per-member metrics.
  - name: Organizations - Webhooks
    x-group: Webhooks
    description: Outbound webhook subscriptions and deliveries.
  - name: Organizations - Activity
    x-group: Activity
    description: The organization activity feed.
  - name: Organizations - Realtime
    x-group: Realtime
    description: Realtime WebSocket secret management (Enterprise).
  - name: Invitations
    x-group: Invitations
    description: Invite people to an organization.
  - name: Organizations - Integration
    x-group: Agent Discovery
    description: >-
      Public agent-discovery surfaces (llms.txt, agentic-instructions.md,
      ai-catalog.json).
paths:
  /organizations/{orgId}/webhooks/deliveries/{deliveryId}/retry:
    post:
      tags:
        - Organizations - Webhooks
      summary: Retry a webhook delivery
      description: >-
        Queues a webhook delivery for an immediate retry by resetting it to
        pending and dispatching it without waiting for the next scheduled
        attempt. The delivery is resolved by its own ID scoped to the
        organization, so no subscription ID is needed in the path. Responds 202
        Accepted as soon as the retry is queued; the actual POST happens
        asynchronously. Requires a Nevermined API key. Requires organization
        admin privileges. Requires the organization to be on the Premium tier or
        higher.
      operationId: WebhookSubscriptionsController_retryDelivery
      parameters:
        - name: orgId
          required: true
          in: path
          description: Organization ID
          schema:
            type: string
            example: org-abc123
        - name: deliveryId
          required: true
          in: path
          description: >-
            ID of the webhook delivery record to retry. This is the delivery
            attempt ID (prefixed `whd-`), distinct from the subscription ID.
          schema:
            example: whd-4a1e6b22
            type: string
      responses:
        '202':
          description: Delivery accepted and queued for immediate retry
        '401':
          description: Missing or invalid Nevermined API key
        '403':
          description: >-
            Caller is not an organization admin, or the org is not on the
            Premium tier or higher
        '404':
          description: Delivery not found in this organization
      security:
        - Authorization: []
components:
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: JWT
      type: http

````

## Related topics

- [Get a webhook delivery record](/docs/api-reference/organizations--webhooks/get-a-webhook-delivery-record.md)
- [List deliveries for a webhook subscription](/docs/api-reference/organizations--webhooks/list-deliveries-for-a-webhook-subscription.md)
- [Activity & Events](/docs/solutions/organizations/activity-and-events.md)
- [Delete a webhook subscription](/docs/api-reference/organizations--webhooks/delete-a-webhook-subscription.md)
- [Update a webhook subscription](/docs/api-reference/organizations--webhooks/update-a-webhook-subscription.md)
