Webhook
Webhook subscription for receiving event notifications.
type Webhook implements Node {
id: ID!
targetUrl: String!
isActive: Boolean!
secretKey: String
connectionString: String
queueName: String
name: String!
events: [WebhookEvent!]!
app: App!
}
Fields
Webhook.id ● ID! non-null scalar
The Globally Unique ID of this object
Webhook.targetUrl ● String! non-null scalar
Webhook.isActive ● Boolean! non-null scalar
Webhook.secretKey ● String scalar
Webhook.connectionString ● String scalar
Webhook.queueName ● String scalar
Webhook.name ● String! non-null scalar
Webhook name
Webhook.events ● [WebhookEvent!]! non-null object
List of events this webhook subscribes to.
Webhook.app ● App! non-null object
The app this webhook belongs to.
Interfaces
Node interface
An object with a Globally Unique ID
Returned By
webhook query
Member Of
App object ● WebhookCreate object ● WebhookDelete object ● WebhookUpdate object