Send your first notification in minutes using Bodhveda API or Console.
Full access
curl -X POST https://api.bodhveda.com/notifications/send \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "to": { "recipient_id": "recipient_123" }, "payload": { "title": "Welcome!", "message": "Thanks for joining." } }'
curl -X GET "https://api.bodhveda.com/recipients/recipient_123/notifications" \ -H "Authorization: Bearer YOUR_API_KEY"
[ { "id": 42069, "recipient_id": "recipient_123", "payload": { "title": "Welcome!", "message": "Thanks for joining." } // ... other fields. } ]
curl -X POST https://api.bodhveda.com/recipients \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"recipient_id": "user@example.com", "name": "Jane Doe"}'
curl -X POST https://api.bodhveda.com/notifications/send \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "to": { "channel": "announcements", "topic": "product", "event": "new_feature" }, "payload": { "title": "Big News!", "message": "We just launched a new feature." } }'
recipient_id