Update user notification settings
Update user notification settings.
Path Parameters
The id of the notification settings to be updated.
Request Body
Disable Email Notifications
User receives an email when someone follows the user
User receives an email when someone the user follows adds a new post.
Receive email when someone comments on the user's post.
Receive email when someone likes the user's post.
User receives an email when someone mentions the user in a post or comment.
User receives an email when someone in a group the user is in creates a new post.
User receives a notification when someone follows the user.
User receives a notification when someone that the user follows adds a new post.
User receives a notification when someone comments on the user's post.
User receives a notification when someone likes the user's post.
User receives a notification when someone mentions the user in a post or comment.
User receives a notification when someone in a group the user is in creates a new post.
- 200
- 403
- 404
- 422
- 500
Request has been handled successfully.
Schema
data object
Possible values: [Notification settings have been updated successfully
]
{
"success": true,
"data": {}
}
Forbidden error. Can either be due to access token not being passed, having been expired or the caller trying to access a resource without enough permissions.
Schema
error object
{
"success": false,
"error": {
"code": "ForbiddenError",
"message": "Token expired"
}
}
Not Found. The resource being accessed does not exist.
Schema
error object
{
"success": false,
"error": {
"code": "NotFoundError",
"message": "The resource you're looking for does not exist"
}
}
Validation Error. The request includes one or more invalid params. Please check the request params and try again.
Schema
error object
{
"success": false,
"error": {
"code": "ValidationError",
"message": "`id` is required"
}
}
Server Error. Something went wrong, try again later.
Schema
error object
{
"success": false,
"error": {
"code": "ServerError",
"message": "Something went wrong"
}
}