Airgram

Guides
/
/
Methods

api.getChatNotificationSettingsExceptions()

Returns list of chats with non-default notification settings

Parameters GetChatNotificationSettingsExceptionsParams:

NameTypeDescription
scope If specified, only chats from the scope will be returned; pass null to return chats from all scopes
compareSoundboolean If true, also chats with non-default sound will be returned
Returns ApiResponse interface:
interface ApiResponse {
  _: 'getChatNotificationSettingsExceptions' | 'error'
  airgram: Airgram
  request: {
    method: 'getChatNotificationSettingsExceptions'
    params: GetChatNotificationSettingsExceptionsParams
  }
  response:  | 
  setState: (nextState: Record<string, unknown>) => void
  getState: () => Record<string, unknown>
}