File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed
Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ Deploy this project to your Tinybird account and configure the webhooks for the
1414- [ Clerk] ( https://www.tinybird.co/docs/get-data-in/guides/ingest-from-clerk )
1515- [ GitLab] ( https://www.tinybird.co/docs/get-data-in/guides/ingest-from-gitlab )
1616- [ GitHub] ( https://www.tinybird.co/docs/get-data-in/guides/ingest-from-github )
17+ - [ Knock] ( https://www.tinybird.co/docs/get-data-in/guides/ingest-from-knock )
1718- [ Orb] ( https://www.tinybird.co/docs/get-data-in/guides/ingest-from-orb )
1819- [ PagerDuty] ( https://www.tinybird.co/docs/get-data-in/guides/ingest-from-pagerduty )
1920- [ Resend] ( https://www.tinybird.co/docs/get-data-in/guides/ingest-from-resend )
Original file line number Diff line number Diff line change 1+ TOKEN "append" APPEND
2+
3+ # Refer to https://docs.knock.app/developer-tools/outbound-webhooks/event-types
4+
5+ TAGS "knock"
6+
7+ SCHEMA >
8+ `typename` String `json:$.__typename`,
9+ `type` String `json:$.type`,
10+ `created_at` DateTime64(3) `json:$.created_at`,
11+ `data` JSON `json:$.data`,
12+ `event_data` JSON `json:$.event_data`
13+
14+
15+ ENGINE "MergeTree"
16+ ENGINE_SORTING_KEY "type, created_at"
You can’t perform that action at this time.
0 commit comments