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:
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
@Shisheer, you just advanced to level 4!
use
@novu/node
sdk if you are self hosting Novu@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