Create Webhook mutation builder
Use the builder below to construct a createWebhook mutation for CreateWebhookInput (label, url, eventTypes, headers) and copy the generated GraphQL snippet.
For subscription lifecycle, delivery behaviour, and signature verification, see the Webhooks guide.
Event types
Headers (optional)
Only rows with both key and value are included in the mutation, placeholder values are not included in the mutation.
Output
Copy the mutation output into any GraphQL client.
mutation CreateWebhook {
createWebhook(
input: {
label: "Main integration"
url: "https://your-app.com/webhooks/semble"
eventTypes: []
}
) {
data {
id
secret
}
error
}
}