Welcome to your demo web environment
Here you can test the Novu in-app notification center and see it in action.
Feel free to skip the tutorial and go straight to your admin panel.
STEP 1
Trigger your first notification using the provided curl command from your terminal.
STEP 2
Click on the received in-app notification to visit your management admin panel. Didn't get it? Click here
curl --location --request POST 'REPLACE_WITH_url' \
--header 'Authorization: ApiKey *********' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "REPLACE_WITH_name",
"to": {
"subscriberId": "REPLACE_WITH_subscriberId",
"firstName": "REPLACE_WITH_firstName",
"lastName": "REPLACE_WITH_lastName"
},
"payload": {
"token": "*********"
}
}'