Toggle room notifications

PUT/chat-rooms/:roomId/notifications

Turn notifications (push, in-app and email) on or off for this chat room. Unread counts are unaffected — the badge still increases, you just are not notified. The current value is available as notificationsEnabled on your member entry in the room detail response.

AuthLogin required

Path parameters

roomIdstringrequired

Chat room ID.

Request body

enabledbooleanrequired

Whether to receive notifications.

Request
curl https://api.4s.link/chat-rooms/ROOM_ID/notifications \
-X PUT \
-H "Authorization: Bearer 4s_at_..." \
-H "Content-Type: application/json" \
-d '{
"enabled": false
}'
Example response
{
"enabled": false
}