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

# Update notification preferences

> Update notification preferences for a collaborator



## OpenAPI

````yaml put /v1/collaborators/{id}/notification-preferences
openapi: 3.1.0
info:
  title: Capital Check In API
  description: >-
    API for the Capital Check In platform - Employee check-in management system
    with identity verification, geolocation, and schedule management
  license:
    name: MIT
  version: 1.0.0
  contact:
    name: Capital Check In Support
    email: hi@capitalcheckin.app
    url: https://capitalcheckin.app
servers:
  - url: https://api.capitalcheckin.app
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/collaborators/{id}/notification-preferences:
    put:
      tags:
        - Collaborators
      summary: Update notification preferences
      description: Update notification preferences for a collaborator
      parameters:
        - name: id
          in: path
          required: true
          description: Collaborator ID
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NotificationPreferences'
      responses:
        '200':
          description: Notification preferences updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotificationPreferences'
      security:
        - bearerAuth: []
components:
  schemas:
    NotificationPreferences:
      type: object
      properties:
        email_notifications:
          type: boolean
          description: Enable email notifications
        sms_notifications:
          type: boolean
          description: Enable SMS notifications
        push_notifications:
          type: boolean
          description: Enable push notifications
        check_in_reminders:
          type: boolean
          description: Enable check-in reminders
        check_out_reminders:
          type: boolean
          description: Enable check-out reminders
        schedule_updates:
          type: boolean
          description: Enable schedule update notifications
        emergency_alerts:
          type: boolean
          description: Enable emergency alerts
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: OAuth2
      description: OAuth2 access token for authentication

````