Webhook subscription webhook events

webhook_subscription.created

Any time a webhook subscription is created we can trigger a WebhookSubscriptionCreatedEvent

Payload example:

{
  "EventName": "webhook_subscription.created",
  "WebhookSubscriptionEventInfo": {
    "OwnerUserId": 0,
    "WebhookSubscriptionId": 0
  },
  "FlipdishEventId": "1a92aaa3-59f4-4944-b868-a88cad0e291a",
  "CreateTime": "0001-01-01T00:00:00",
  "Position": 0
}

webhook_subscription.updated

Any time a webhook subscription is updated we can trigger a WebhookSubscriptionUpdatedEvent

Payload example:

{
  "EventName": "webhook_subscription.updated",
  "WebhookSubscriptionEventInfo": {
    "OwnerUserId": 0,
    "WebhookSubscriptionId": 0
  },
  "FlipdishEventId": "1a92aaa3-59f4-4944-b868-a88cad0e291a",
  "CreateTime": "0001-01-01T00:00:00",
  "Position": 0
}

webhook_subscription.deleted

Any time a webhook subscription is deleted we can trigger a WebhookSubscriptionDeletedEvent

Payload example:

{
  "EventName": "webhook_subscription.deleted",
  "WebhookSubscriptionEventInfo": {
    "OwnerUserId": 0,
    "WebhookSubscriptionId": 0
  },
  "FlipdishEventId": "1a92aaa3-59f4-4944-b868-a88cad0e291a",
  "CreateTime": "0001-01-01T00:00:00",
  "Position": 0
}