Willem
Willem
NNovu
Created by Willem on 3/19/2025 in #💬│support
Undefined 'data' and 'redirect' properties: migrating from notification-center to @novu/react
I'm currently migrating our Novu notification center component to the new Inbox component and stumbled upon the issue where I cannot access the notification cta and payload. In the migration guide, it is stated that the cta and payload properties have been replaced with redirect and data properties. However, when I try to access these properties, the values appear to be undefined. Are there any changes required as well to ensure that the new redirect and data properties contain the values which were previously found in cta and payload?
6 replies
NNovu
Created by Willem on 11/1/2024 in #💬│support
/v1/event/trigger 400 bad request: trigger is missing: actor object
Hello 👋, my api requests towards the /v1/event/trigger endpoint is returning a 400 error code with the message "trigger is missing: actor object". Looking at the documentation, it mentions that actor is not a required object. Did anything change in regards to certain properties being required for this particular endpoint? My payload:
{
"name": "<redacted>",
"to": [
{
"subscriberId": "redacted",
"data": {
"companyId": redacted,
"userId": redacted
},
"email": "redacted",
"firstName": "redacted"
}
],
"payload": {redacted},
},
"overrides": {}
{
"name": "<redacted>",
"to": [
{
"subscriberId": "redacted",
"data": {
"companyId": redacted,
"userId": redacted
},
"email": "redacted",
"firstName": "redacted"
}
],
"payload": {redacted},
},
"overrides": {}
Full response:
{
"statusCode": 400,
"timestamp": "2024-11-01T09:27:52.676Z",
"path": "/v1/events/trigger",
"message": "Trigger is missing: actor object",
"error": "Bad Request"
}
{
"statusCode": 400,
"timestamp": "2024-11-01T09:27:52.676Z",
"path": "/v1/events/trigger",
"message": "Trigger is missing: actor object",
"error": "Bad Request"
}
13 replies