> ## 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.

# Get one of the caller notification preferences



## OpenAPI

````yaml /api/rs/openapi.json get /rs/notification-preferences/v1/{id}
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/{id}:
    get:
      tags:
        - notification-preferences
      summary: Get one of the caller notification preferences
      operationId: getNotificationPreferenceRSV1
      parameters:
        - schema:
            type: string
            format: uuid
            pattern: >-
              ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
          in: path
          name: id
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                    pattern: >-
                      ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                  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
                  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
                  actionKeys:
                    type: array
                    items:
                      type: string
                      minLength: 1
                      maxLength: 100
                  units:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          pattern: >-
                            ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                        name:
                          type: string
                      required:
                        - id
                        - name
                      additionalProperties: false
                  rules:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          pattern: >-
                            ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                        name:
                          type: string
                      required:
                        - id
                        - name
                      additionalProperties: false
                  actions:
                    type: object
                    properties:
                      canSetSmsChannel:
                        type: boolean
                      canSetLeadTime:
                        type: boolean
                      canSetActionKeys:
                        type: boolean
                      canSetRules:
                        type: boolean
                      canSetTargets:
                        type: boolean
                    required:
                      - canSetSmsChannel
                      - canSetLeadTime
                      - canSetActionKeys
                      - canSetRules
                      - canSetTargets
                    additionalProperties: false
                required:
                  - id
                  - type
                  - channels
                  - leadTime
                  - applyTo
                  - actionKeys
                  - units
                  - rules
                  - actions
                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

````