> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/webhooks/llms.txt)
> Source: https://docs.saleor.io/api-reference/webhooks/objects/webhook-dry-run

# WebhookDryRun Object

Performs a dry run of a webhook event. Supports a single event (the first, if multiple provided in the `query`). Requires permission relevant to processed event.

Requires the AUTHENTICATED\_STAFF\_USER permission.

```graphql
type WebhookDryRun {
  payload: JSONString
  errors: [WebhookDryRunError!]!
}
```

<a id="fields"></a>

### Fields

<a id="payload"></a>

#### [`payload`](#payload) ● [`JSONString`](/api-reference/miscellaneous/scalars/jsonstring.md)

JSON payload, that would be sent out to webhook's target URL.

<a id="errors"></a>

#### [`errors`](#errors) ● [`[WebhookDryRunError!]!`](/api-reference/webhooks/objects/webhook-dry-run-error.md)

<a id="returned-by"></a>

### Returned By

[`webhookDryRun`](/api-reference/webhooks/mutations/webhook-dry-run.md) mutation
