cURL
curl --request DELETE \ --url http://localhost:3000/api/notifications \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "ids": [ "<string>" ] } '
{ "success": true, "message": "<string>", "data": { "deletedCount": 123 } }
Requires notifications:manage permission.
notifications:manage
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
1
Notifications deleted
true
Show child attributes