-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
60 lines (60 loc) · 1.77 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
53
54
55
56
57
58
59
60
{
"id": "send_email_with_zapier",
"uuid": "e8e2d36f-a95e-4be1-9f21-3ffe036af22c",
"emoji": "📧",
"iconURL": "https://raw.githubusercontent.com/TypingMind/plugin-send-email-with-zapier/main/zapier.svg",
"title": "Send email with Zapier",
"system": false,
"disabled": false,
"syncedAt": null,
"httpAction": {
"id": "ee7f1af6-b4ca-4b88-9568-8791ada4144f",
"url": "{webhookURL}",
"name": "",
"method": "POST",
"hasBody": true,
"requestBody": "{\n \"email\": \"{email}\",\n \"subject\": \"{subject}\",\n \"content\": \"{content}\"\n}\n",
"resultTransform": {
"engine": "jmes",
"expression": ""
},
"hasResultTransform": false
},
"openaiSpec": {
"name": "send_email_with_zapier",
"parameters": {
"type": "object",
"required": ["email", "subject", "content"],
"properties": {
"email": {
"type": "string",
"description": "The recipient's email address."
},
"content": {
"type": "string",
"description": "The body content of the email."
},
"subject": {
"type": "string",
"description": "The subject line of the email."
}
}
},
"description": "Send an email to a specific email address with title and text content using Zapier webhook"
},
"outputType": "respond_to_ai",
"oauthConfig": null,
"userSettings": [
{
"name": "webhookURL",
"label": "Webhook URL (Required)",
"description": "The Zapier webhook URL to which the email data will be sent",
"type": "password",
"required": true,
"placeholder": "https://hooks.zapier.com/hooks/catch/******"
}
],
"isServerPlugin": true,
"authenticationType": "AUTH_TYPE_NONE",
"implementationType": "http"
}