mirror of
https://github.com/valitydev/Cortex-Analyzers.git
synced 2024-11-06 17:15:21 +00:00
28 lines
740 B
JSON
28 lines
740 B
JSON
{
|
|
"name": "SendGrid",
|
|
"version": "1.0",
|
|
"author": "Equate Technologies",
|
|
"url": "https://github.com/TheHive-Project/Cortex-Analyzers",
|
|
"license": "AGPL-V3",
|
|
"description": "Send an email with information from a TheHive case or alert via SendGrid API over HTTPS",
|
|
"dataTypeList": ["thehive:case", "thehive:alert"],
|
|
"command": "SendGrid/SendGrid.py",
|
|
"baseConfig": "SendGrid",
|
|
"configurationItems": [
|
|
{
|
|
"name": "from",
|
|
"description": "Email address to use as the From: field",
|
|
"type": "string",
|
|
"multi": false,
|
|
"required": true
|
|
},
|
|
{
|
|
"name": "api_key",
|
|
"description": "SendGrid API key",
|
|
"type": "string",
|
|
"multi": false,
|
|
"required": true
|
|
}
|
|
]
|
|
}
|