> ## 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.

# Send event

> Trigger a CrowdChange webhook to fire an event payload based on an existing entity, useful for testing endpoints and replaying historical data.

## Path parameters

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

## Body

<ParamField body="id" type="integer" required>
  Entity ID. (Campaign/Transaction/Tax Receipt/Team/Personal Page)
</ParamField>

<ParamField body="event" type="string" required>
  Event name. Allowed values: `fundraiser_created`, `fundraiser_updated`, `transaction_created`, `fundraiser_team_created`, `fundraiser_team_updated`, `fundraiser_page_created`, `fundraiser_page_updated`, `tax_receipt_issued`
</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>
