validate_webhook
Verify webhook connectivity by sending a test message to Discord, Slack, or both services, ensuring proper setup and functionality for notifications.
Instructions
Test webhook connectivity by sending a test message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | No | ||
service | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"message": {
"type": "string"
},
"service": {
"enum": [
"discord",
"slack",
"both"
],
"type": "string"
}
},
"type": "object"
}