WebhookDelivery
A single delivery attempt for a webhook endpoint (most recent first via
webhookDeliveries). Useful for debugging integration issues.
type WebhookDelivery {
id: ID!
event: String!
success: Boolean!
statusCode: Int
attempts: Int!
error: String
createdAt: Timestamp
}
Fields
WebhookDelivery.id ● ID! non-null scalar
WebhookDelivery.event ● String! non-null scalar
Wire event name, e.g. "order.shipped" or "webhook.test".
WebhookDelivery.success ● Boolean! non-null scalar
WebhookDelivery.statusCode ● Int scalar
HTTP status returned by your endpoint, if the request completed.
WebhookDelivery.attempts ● Int! non-null scalar
WebhookDelivery.error ● String scalar
WebhookDelivery.createdAt ● Timestamp object
Returned By
webhookDeliveries query