How to send a push notification to specific participants

How to send a push notification to specific participants

Use this guide when you need to send a targeted push notification to one or more specific participant accounts.


Request

Bash
curl -X POST "https://your-event-domain.com/api/v2/notifications/send/7" \
  -H "Authorization: Bearer your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "content": { "en": "Your meeting with Acme Corp has been confirmed." },
    "user_ids": [18629, 18630, 18631]
  }'

Notes

  • content maps language codes to message strings (e.g. {"en": "...", "de": "..."})

  • Max 235 characters per message value, up to 2000 account IDs per request

  • Notifications are delivered asynchronously — success: true means batches were queued