Skip to main content

CreateWebhookInput

Input for createWebhook.

input CreateWebhookInput {
url: String!
eventTypes: [WebhookEventType!]!
enabled: Boolean
}

Fields

CreateWebhookInput.url ● String! non-null scalar

HTTPS endpoint that will receive events.

CreateWebhookInput.eventTypes ● [WebhookEventType!]! non-null enum

Event types to subscribe to.

CreateWebhookInput.enabled ● Boolean scalar

Whether the webhook should be active immediately. When true, the URL is reachability-tested with a webhook.test payload before creation. Defaults to true.

Member Of

createWebhook mutation