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

# Resend logged event

> Resend a previously logged CrowdChange webhook event to its subscriber URL, useful for retrying failed deliveries or debugging webhook handlers.

## Path parameters

<ParamField path="id" type="integer" required>
  Webhook ID.
</ParamField>

<ParamField path="logId" type="integer" required>
  Log ID.
</ParamField>

## Response

<ResponseField name="status" type="string">
  Status of the operation. Check the logs if you want to know the HTTP-code returned by your server.
</ResponseField>

**Other responses**

| Status | Description  |
| ------ | ------------ |
| `400`  | Bad Request  |
| `401`  | Unauthorized |
| `403`  | Forbidden    |

<ResponseExample>
  ```json theme={null}
  {
    "status": "ok"
  }
  ```
</ResponseExample>
