# WebhookDeliveryDetail

Returned only by the single-delivery query. The request body is the exact signed payload that was sent, so this carries full event data.

```
type WebhookDeliveryDetail {

  delivery: WebhookDelivery!

  requestBody: String!

  responseBody: String

}
```

### Fields[​](#fields "Direct link to Fields")

#### [`WebhookDeliveryDetail.delivery`](#delivery) ● [`WebhookDelivery!`](https://docs.monei.com/apis/graphql/types/objects/webhook-delivery/.md) non-null object[​](#delivery "Direct link to delivery")

The delivery.

#### [`WebhookDeliveryDetail.requestBody`](#request-body) ● [`String!`](https://docs.monei.com/apis/graphql/types/scalars/string/.md) non-null scalar[​](#request-body "Direct link to request-body")

Payload that was signed and sent, as stored. Truncated when `delivery.bodyTruncated` is true.

#### [`WebhookDeliveryDetail.responseBody`](#response-body) ● [`String`](https://docs.monei.com/apis/graphql/types/scalars/string/.md) scalar[​](#response-body "Direct link to response-body")

Body returned by the endpoint on the most recent attempt, truncated.

### Returned By[​](#returned-by "Direct link to Returned By")

[`webhookDelivery`](https://docs.monei.com/apis/graphql/operations/queries/webhook-delivery/.md) query
