/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
docs/platform/sdks/server/ruby.mdx
40 строк
1 KB
mintlify[bot]
docs(docs): Apply SEO and metadata best practices (#11903)
13 июл 2026, 11:22
Не верифицирован
13 июл 2026, 11:22
01f36ae
Код
Авторство
О чём код?
--- title: 'Ruby' description: "Connect a Ruby application to Novu with the official server SDK to trigger workflows, manage subscribers, and send notifications from Ruby code." --- <Warning> This SDK is community maintained. Feel free to contribute on our [GitHub repository](https://github.com/novuhq/novu-ruby). </Warning> Novu's Ruby SDK provides simple, yet comprehensive notification management, and delivery capabilities through multiple channels that you can implement using code that integrates seamlessly with your Ruby application. [Explore the source code on GitHub](https://github.com/novuhq/novu-ruby) ## Installation ```bash gem install novu ``` ## Usage ```ruby require 'novu' client = Novu::Client.new(access_token: 'YOUR_NOVU_API_TOKEN') payload = { 'name' => 'Trigger1', 'payload' => { # optional 'first-name' => 'Adam' # optional }, 'to' => { 'subscriberId' => '7789' }, 'transactionId' => '89kjfke9893' #optional } client.trigger_event(payload) ```