send-notification
Trigger push notifications to specific devices by sending a channel ID and content via the Pushinator API. Integrate into LLM workflows for real-time alerts.
Instructions
Send a notification via the Pushinator API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel_id | Yes | UUID of the channel to send the notification to | |
content | Yes | String content of the notification |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channel_id": {
"description": "UUID of the channel to send the notification to",
"type": "string"
},
"content": {
"description": "String content of the notification",
"type": "string"
}
},
"required": [
"channel_id",
"content"
],
"type": "object"
}