Sign in

Send notification

documented

Send a push notification to channel subscribers by posting a message to a channel; requires channel_id and content in the request body (acknowledgment_optional is available on paid plans).

POST /api/v2/notifications/sendNotificationsno implementation yet0 runs
No 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.pushinator.com/api/v2/notifications/send" \
  -X "POST" \
  -H "Authorization: Bearer {{PUSHINATOR_API_KEY}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"channel_id": "{{$channel_id}}", "content": "{{$content}}", "acknowledgment_required": {{$acknowledgment_required}}}'