-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathzapier-quick-start.json
More file actions
66 lines (66 loc) · 1.61 KB
/
zapier-quick-start.json
File metadata and controls
66 lines (66 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"zapier_webhook_config": {
"method": "POST",
"url": "https://summarybot-ng.fly.dev/api/v1/summaries",
"headers": {
"Content-Type": "application/json",
"X-API-Key": "test-api-key-12345"
},
"payload_type": "json"
},
"simple_payload_example": {
"messages": [
{
"id": "msg-001",
"author_name": "User Name",
"author_id": "123456789",
"content": "Your message content here",
"timestamp": "2026-01-06T10:00:00"
}
],
"channel_id": "your-channel-id",
"guild_id": "your-guild-id"
},
"full_payload_example": {
"messages": [
{
"id": "msg-001",
"author_name": "Alice",
"author_id": "111111",
"content": "First message",
"timestamp": "2026-01-06T10:00:00"
},
{
"id": "msg-002",
"author_name": "Bob",
"author_id": "222222",
"content": "Second message",
"timestamp": "2026-01-06T10:01:00"
}
],
"channel_id": "zapier-channel",
"guild_id": "zapier-guild",
"options": {
"summary_length": "brief",
"include_bots": false,
"min_messages": 2
}
},
"response_example": {
"id": "sum_1767657814",
"channel_id": "zapier-channel",
"guild_id": "zapier-guild",
"summary_text": "Summary of the conversation...",
"key_points": [
"Key point 1",
"Key point 2"
],
"action_items": [],
"message_count": 2,
"metadata": {
"input_tokens": 488,
"output_tokens": 293,
"total_tokens": 781
}
}
}