Skip to main content

WebhookUpdateInput

Fields for updating a webhook.

input WebhookUpdateInput {
name: String
targetUrl: String
events: [WebhookEventTypeEnum!]
app: ID
isActive: Boolean
secretKey: String
connectionString: String
queueName: String
}

Fields

WebhookUpdateInput.name ● String scalar

The new name of the webhook.

WebhookUpdateInput.targetUrl ● String scalar

The url to receive the payload.

WebhookUpdateInput.events ● [WebhookEventTypeEnum!] list enum

The events that webhook wants to subscribe (event type names).

WebhookUpdateInput.app ● ID scalar

ID of the app to which webhook belongs. If not specified, the webhook's existing app association remains unchanged.

WebhookUpdateInput.isActive ● Boolean scalar

Determine if webhook will be set active or not.

WebhookUpdateInput.secretKey ● String scalar

The secret key used to create a hash signature with each payload.

WebhookUpdateInput.connectionString ● String scalar

The connection string or service key json for third party queue services.

WebhookUpdateInput.queueName ● String scalar

The queue name for Microsoft Azure ServiceBus connection.

Member Of

webhookUpdate mutation

Was this page helpful?