> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.kotanipay.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Notification Preferences

Update the email and Slack notification settings for settlement events on your account. These notifications supplement signed webhook delivery and are intended for human awareness.


## OpenAPI

````yaml PATCH /api/v3/integrator/settlements/notification-preferences
openapi: 3.0.0
info:
  title: KOTANI PAY API PLATFORM
  description: ''
  version: '3.0'
  contact: {}
servers:
  - url: https://sandbox-api.kotanipay.io
    description: Sandbox
security: []
tags: []
paths:
  /api/v3/integrator/settlements/notification-preferences:
    patch:
      tags:
        - INTEGRATOR
      operationId: IntegratorSettlementsController_updateNotificationPrefs_api/v3
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateSettlementNotificationPrefsDto'
      responses:
        '200':
          description: ''
      security:
        - JWT: []
components:
  schemas:
    UpdateSettlementNotificationPrefsDto:
      type: object
      properties:
        settlementNotificationEmail:
          type: string
          description: Email to receive settlement updates (defaults to profile email)
        settlementNotificationsEnabled:
          type: boolean
        settlementSlackWebhookUrl:
          type: string
          description: Slack incoming webhook URL for settlement notifications
        settlementSlackEnabled:
          type: boolean
  securitySchemes:
    JWT:
      scheme: bearer
      bearerFormat: JWT
      type: http

````