> ## Documentation Index
> Fetch the complete documentation index at: https://api-documentation.kare-app.fr/llms.txt
> Use this file to discover all available pages before exploring further.

# List the notification types the caller may configure



## OpenAPI

````yaml /api/rs/openapi.json get /rs/notification-preferences/v1/types
openapi: 3.0.3
info:
  title: KARE API
  description: Backend API for the KARE platform
  version: dev
servers:
  - url: http://localhost:3000
    description: Local dev
security: []
tags:
  - name: better-auth
    description: >-
      Better Auth's own endpoints (sign-in, session, MFA, password) - generated
      from the audience's live config via `generateOpenAPISchema()`, not
      hand-written.
paths:
  /rs/notification-preferences/v1/types:
    get:
      tags:
        - notification-preferences
      summary: List the notification types the caller may configure
      operationId: listNotificationPreferenceTypesRSV1
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        type:
                          type: string
                          enum:
                            - deadline_reminder
                            - deadline_overdue
                            - commission_reminder
                            - inbox_report_received
                            - conversation_message_received
                            - intervention_started
                            - intervention_signed
                            - intervention_planned
                            - intervention_overdue
                            - user_action
                        severity:
                          type: string
                          enum:
                            - alert
                            - reminder
                            - info
                        expectation:
                          type: string
                          enum:
                            - required
                            - suggested
                            - none
                        action:
                          nullable: true
                          type: string
                          enum:
                            - plan
                            - reschedule
                            - verify
                            - process
                            - prepare
                        smsAllowed:
                          type: boolean
                        leadTimeAllowed:
                          type: boolean
                        rulesAllowed:
                          type: boolean
                        actionKeysAllowed:
                          type: boolean
                        defaults:
                          type: object
                          properties:
                            channels:
                              type: array
                              items:
                                type: string
                                enum:
                                  - in_app
                                  - email
                                  - sms
                            leadTime:
                              nullable: true
                              type: string
                              pattern: >-
                                ^P(?!$)(\d+Y)?(\d+M)?(\d+W)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+S)?)?$
                            applyTo:
                              type: string
                              enum:
                                - all
                                - responsibilities
                                - selection
                          required:
                            - channels
                            - leadTime
                            - applyTo
                          additionalProperties: false
                        followableActions:
                          type: array
                          items:
                            type: object
                            properties:
                              key:
                                type: string
                                minLength: 1
                                maxLength: 100
                              label:
                                type: string
                                minLength: 1
                            required:
                              - key
                              - label
                            additionalProperties: false
                      required:
                        - type
                        - severity
                        - expectation
                        - action
                        - smsAllowed
                        - leadTimeAllowed
                        - rulesAllowed
                        - actionKeysAllowed
                        - defaults
                        - followableActions
                      additionalProperties: false
                required:
                  - data
                additionalProperties: false
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                  requestId:
                    type: string
                  details: {}
                required:
                  - error
                  - message
                  - requestId
                additionalProperties: false
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                  requestId:
                    type: string
                  details: {}
                required:
                  - error
                  - message
                  - requestId
                additionalProperties: false
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                  requestId:
                    type: string
                  details: {}
                required:
                  - error
                  - message
                  - requestId
                additionalProperties: false

````