kweenkl
Send push notifications to users about important events, updates, or information requiring immediate attention through customizable webhook channels.
Instructions
Send a push notification using kweenkl. The verb 'kweenkl' means to send a notification. Use this to notify users about important events, updates, or information that requires immediate attention.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | The notification message content. Should be clear, concise, and actionable. Maximum recommended length: 500 characters for optimal mobile display. | |
payload | No | Optional custom JSON payload for additional metadata. Can include any structured data that your app might process (e.g., action buttons, deep links, custom data). | |
priority | No | Priority level for the notification. 'high' = urgent/critical alerts, 'normal' = standard updates (default), 'low' = non-urgent information. | |
title | No | Optional title for the notification. Should be brief (max 50 chars recommended). If omitted, only the message will be shown. | |
webhook_token | Yes | The webhook token for your kweenkl channel. Format: UUID-like string. Can be found in the kweenkl iOS app by opening a channel and viewing 'Channel Info'. |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"description": "The notification message content. Should be clear, concise, and actionable. Maximum recommended length: 500 characters for optimal mobile display.",
"type": "string"
},
"payload": {
"description": "Optional custom JSON payload for additional metadata. Can include any structured data that your app might process (e.g., action buttons, deep links, custom data).",
"type": "object"
},
"priority": {
"description": "Priority level for the notification. 'high' = urgent/critical alerts, 'normal' = standard updates (default), 'low' = non-urgent information.",
"enum": [
"low",
"normal",
"high"
],
"type": "string"
},
"title": {
"description": "Optional title for the notification. Should be brief (max 50 chars recommended). If omitted, only the message will be shown.",
"type": "string"
},
"webhook_token": {
"description": "The webhook token for your kweenkl channel. Format: UUID-like string. Can be found in the kweenkl iOS app by opening a channel and viewing 'Channel Info'.",
"type": "string"
}
},
"required": [
"webhook_token",
"message"
],
"type": "object"
}