Send message
documentedSend a push notification to one or more users or groups with optional title, attachment, HTML formatting, and additional options.
POST /messages.jsonMessagesno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.pushover.net/1/messages.json" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"token":"{{PUSHOVER_API_KEY}}","user":"{{$user_key}}","message":"{{$message}}","title":"{{$title}}","url":"{{$url}}","url_title":"{{$url_title}}","device":"{{$device}}","priority":{{$priority}},"sound":"{{$sound}}","timestamp":{{$timestamp}},"html":{{$html}},"monospace":{{$monospace}},"attachment":"{{$attachment}}","attachment_base64":"{{$attachment_base64}}","attachment_type":"{{$attachment_type}}","ttl":{{$ttl}}}'