---
title: "Webhook Calls hooks"
description: "Hand-written shim. Implementation is generated; see ./webhook-calls.gen."
section: "Libraries"
group: "React hooks"
order: 466
---

## Hooks

### `useDeleteWebhookCall` `mutation`

Delete a webhook call.

```ts
useDeleteWebhookCall(options?: MutationOpts<SuccessResponse, string>)
```

**Types:** [SuccessResponse](/types/success-response)

### `useListWebhookCalls` `query`

List inbound webhook calls.

```ts
useListWebhookCalls(params?: Omit<ListWebhookCallsParams, | > & { filter?: WebhookCallFilter; orderBy?: WebhookCallOrderBy[]; } & WebhookCallShorthands, options?: QueryOpts<Page<WebhookCall>>)
```

**Types:** [ListWebhookCallsParams](/types/list-webhook-calls-params) · [WebhookCallFilter](/types/webhook-call-filter) · [WebhookCallOrderBy](/types/webhook-call-order-by) · [WebhookCallShorthands](/types/webhook-call-shorthands) · [Page](/types/page) · [WebhookCall](/types/webhook-call)

### `useRetrieveWebhookCall` `query`

Get a webhook call by ID.

```ts
useRetrieveWebhookCall(id: string, options?: QueryOpts<WebhookCall>)
```

**Types:** [WebhookCall](/types/webhook-call)
