Skip to content

Commit 5f3849a

Browse files
authored
Merge pull request #18 from tinybirdco/knock
add knock
2 parents 1dc3604 + 62bc757 commit 5f3849a

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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)
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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"

0 commit comments

Comments
 (0)