---
title: "Retry webhook delivery"
full: true
_openapi:
  method: POST
  toc: []
  structuredData:
    headings: []
    contents:
      - content: "Manually re-enqueues a specific webhook delivery attempt"
_apiData:
  document: "https://reloop.sh/api/webhook/openapi/json"
  operationData: [{"path":"/api/webhook/deliveries/{delivery_id}/retry","method":"post"}]
  parameterList: [{"name":"delivery_id","type":"string","required":true,"description":"Webhook Delivery ID","location":"path","minLength":1}]
  responseMap: {"200":{"description":"Response for status 200","schema":{"success":true,"message":"Contact already exists"}},"400":{"description":"Response for status 400","schema":{"name":"Newsletter","message":"Contact already exists","status":0,"data":{"why":"A contact with this email already exists in your organization.","fix":"Use a different email address or update the existing contact instead.","link":"https://reloop.sh/docs/api/contacts"}}},"401":{"description":"Response for status 401","schema":{"name":"Newsletter","message":"Contact already exists","status":0,"data":{"why":"A contact with this email already exists in your organization.","fix":"Use a different email address or update the existing contact instead.","link":"https://reloop.sh/docs/api/contacts"}}},"404":{"description":"Response for status 404","schema":{"name":"Newsletter","message":"Contact already exists","status":0,"data":{"why":"A contact with this email already exists in your organization.","fix":"Use a different email address or update the existing contact instead.","link":"https://reloop.sh/docs/api/contacts"}}}}
  codeSamples:
    - id: node
      lang: javascript
      label: Node.js
      source: |-
        import { Reloop } from "reloop-email";
        
        const reloop = new Reloop({ apiKey: "rl_123456789" });
        
        const { webhook, webhookError } = await reloop.webhook.retryDelivery("del_123456789");
        if (webhookError) throw webhookError;
    - id: curl
      lang: bash
      label: cURL
      source: |-
        curl -X POST https://reloop.sh/api/webhook/deliveries/del_123456789/retry \\
          -H "x-api-key: rl_123456789"
    - id: python
      lang: python
      label: Python
      source: |-
        # Webhook SDK support coming soon
    - id: php
      lang: php
      label: PHP
      source: |-
        // Webhook SDK support coming soon
    - id: java
      lang: java
      label: Java
      source: |-
        // Webhook SDK support coming soon
    - id: dotnet
      lang: csharp
      label: .NET
      source: |-
        // Webhook SDK support coming soon
    - id: go
      lang: go
      label: Go
      source: |-
        // Webhook SDK support coming soon
    - id: rust
      lang: rust
      label: Rust
      source: |-
        // Webhook SDK support coming soon
    - id: ruby
      lang: ruby
      label: Ruby
      source: |-
        # Webhook SDK support coming soon
    - id: elixir
      lang: elixir
      label: Elixir
      source: |-
        # Webhook SDK support coming soon
---
> For the complete documentation index, see [llms-docs.txt](/llms-docs.txt) or the site index [llms.txt](/llms.txt). Full docs corpus: [llms-full-docs.txt](/llms-full-docs.txt). Prefer markdown URLs (append `.md`) for agent consumption. Product skill: [skill.md](/skill.md).


{/* This file was generated by the OpenAPI doc generator. Do not edit this file directly. Run `bun run generate:api-docs` to regenerate. */}

<APIPage />
