MG
NNovu
•Created by MG on 3/28/2025 in #💬│support
java sdk
Dears, do you know if there is a plan to release an official Java SDK or if there is a plan to release a Java SDK that supports Novu version 2.x.x?
4 replies
NNovu
•Created by MG on 3/27/2025 in #💬│support
Language support for messages and email contents
Hello, not sure this is the right section for this question, anyhow I have the use case where users of our application can set their language and expect to recieve email and message content, respectevely to their language of choice. Question is if and how Novu can support localisation and different languages at template level, without the need to pass the entire email payload as "overrides" which also seems incompatible with the Digest step that we want to introduce in our workflows.
Thanks!
2 replies
NNovu
•Created by MG on 3/25/2025 in #💬│support
Subscriber Preferences not reflected in Get Preferences API and when triggering a workflow
Dear Support,
we creating and updating Subscribers preferences via API (currently testing this integration via PostMan and with Novu configured as self hosted using Docker images version 2.1.1).
What is happening is that the preferences seems to be reflected in the MongoDB and in the Get Subscriber API, but when calling the Get Subscriber Preferences API we can't see them reflected at all; moreover, the subscriber preferences are not considered when triggering the workflow steps (e.g. email:false is still triggering the email, even though the workflow is not marked as "critical").
Is something that we are doing wrong? Please see below the list of API calls that we are making to create, update and get the subscriber and its preferences:
Create subscriber API:
curl --location 'http://localhost:3000/v1/subscribers' \
--header 'Authorization: ApiKey <AK>' \
--header 'Content-Type: application/json' \
--data-raw '{
"subscriberId": "1234",
"email": "[email protected]",
"firstName": "M",
"lastName": "G",
"phone": "+1234567890",
"data" :{}
}'
Update preferences API:
curl --location --request PATCH 'http://localhost:3000/v2/subscribers/1234' \
--header 'Authorization: ApiKey <AK>' \
--header 'Content-Type: application/json' \
--data '{
"channels": {
"email": false,
"in_app": true
}
}'
Get Subscriber API response:
{
"data": {
"firstName": "M",
"lastName": "G",
"email": "[email protected]",
"phone": "+1234567890",
"subscriberId": "1234",
"deleted": false,
"data": {},
"channels": [
{
"email": false,
"in_app": true
}
]
}
}
Get Subscriber preferences API:
curl --location 'http://localhost:3000/v2/subscribers/1234/preferences' \
--header 'Authorization: ApiKey <AK>' \
--header 'Content-Type: application/json' \
--data ''
Response:
{
"data": {
"global": {
"enabled": true,
"channels": {
"email": true,
"sms": true,
"in_app": true
}
},
"workflows": [...]
9 replies
NNovu
•Created by MG on 2/6/2025 in #💬│support
Novu self hosted multi tenant support
Hello, we are evaluating the usage of Novu with Self Hosted solution. At the moment I'm testing it locally by deploying the Docker image on my local docker. The problem is that I can't see the Tenants option; I also changed the env variable IS_MULTI_TENANCY_ENABLED=true , but no results. Can you please help?
10 replies