Webhook
No description
type Webhook {
active: Boolean!
createdAt: DateTime!
events: [String]!
id: UUID!
station: Station!
stationId: String!
updatedAt: DateTime!
url: URL!
}
Fields
Webhook.active
● Boolean!
non-null scalar references
Webhook.createdAt
● DateTime!
non-null scalar references
Webhook.events
● [String]!
non-null scalar references
Events the webhook is subscribed to.
Webhook.id
● UUID!
non-null scalar references
Webhook.station
● Station!
non-null object references
Webhook.stationId
● String!
non-null scalar references
Webhook.updatedAt
● DateTime!
non-null scalar references
Webhook.url
● URL!
non-null scalar references
Target URL to send webhook payload to.
Returned By
createWebhook
mutation ● deleteWebhook
mutation ● updateWebhook
mutation ● webhook
query ● webhooks
query
Member Of
Station
object