generated from PostHog/posthog-plugin-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.json
52 lines (52 loc) · 1.62 KB
/
plugin.json
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
{
"name": "posthog-twilio-plugin",
"url": "https://github.com/merrcury/posthog-twilio-plugin",
"description": "This plugin can be used to integrate twilio with posthog",
"main": "index.js",
"posthogVersion": ">= 1.25.0",
"config": [
{
"markdown": "posthog-twilio-plugin"
},
{
"key": "accountSID",
"name": "Account SID",
"type": "string",
"default": "{your SID}",
"required": true,
"hint": "Enter your Twilio Account SID"
},
{
"key": "authToken",
"name": "API token",
"type": "string",
"default": "{your token}",
"required": true,
"hint": "Enter your Twilio API Token"
},
{
"key": "triggeringEventsAndNumber",
"hint": "Define eventName and Number like eventName:PhoneNumber,eventName:PhoneNumber",
"name": "Triggering events",
"type": "string",
"default": "{Sample keys}",
"required": true
},
{
"key": "senderPhoneNumber",
"hint": "Phone Number with country code",
"name": "Sender Phone Numbers",
"type": "string",
"default": "{+countrycodephone}",
"required": true
},
{
"key": "timeout",
"hint": "Tell us frequency of message. ",
"name": "In how much time posthog should send message again (in seconds)?",
"type": "string",
"default": "60",
"required": true
}
]
}