N
Novu2d ago
Shisheer

Some /v2 endpoints not working

I am running self-hosted (api, worker, ws and web) on v2.1.1 When I try to hit GET /v2/subscribers, I get the result I expect but when I hit POST /v2/subscribers I am not able to create subscribers. I get this error:
{
"error": "Not Found",
"statusCode": 404,
"timestamp": "2025-04-01T16:20:41.746Z",
"path": "/v2/subscribers",
"message": "Cannot POST /v2/subscribers",
"ctx": {
"error": "Not Found",
"statusCode": 404
}
}
{
"error": "Not Found",
"statusCode": 404,
"timestamp": "2025-04-01T16:20:41.746Z",
"path": "/v2/subscribers",
"message": "Cannot POST /v2/subscribers",
"ctx": {
"error": "Not Found",
"statusCode": 404
}
}
However when I change POST /v2/subscribers to POST /v1/subscribers, the v1 version seems to work fine. Why is this and how to fix /v2 endpoints?
4 Replies
Novu_Bot
Novu_Bot2d ago
@Shisheer, you just advanced to level 4!
Pawan Jain
Pawan Jain2d ago
Hey 👋

Use old apis with self hosted version
https://v0.x-docs.novu.co/api-reference/overview
Pawan Jain
Pawan Jain2d ago
use @novu/node sdk if you are self hosting Novu
Shisheer
ShisheerOP11h ago
@Pawan Jain Thank you for your reply. Will try out the v1 API 👍 I have been getting errors related to subscriber preference when triggering email workflows to a subscriber. I fixed it by calling /v2/subscribers/{subscriberId}/preferences endpoint. The endpoint would respond with 500 but somehow also add the subscriber preference to the preferences table in MongoDB. In any case, it somehow seemed to fix the issue. I have other subscribers that I haven't fixed the issue for so I will try /v1/subscribers/{subscriberId}/preferences (i.e. the v1 API endpoint) to see if that works by adding the preference to the preferences MongoDB table **without a 500 response

Did you find this page helpful?