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

# Retrieve all notification settings



## OpenAPI

````yaml get /v5/notifications/settings
openapi: 3.0.3
info:
  title: Kadoa API
  version: 3.0.0
  contact:
    name: Support
    email: support@kadoa.com
servers:
  - url: https://api.kadoa.com
security: []
paths:
  /v5/notifications/settings:
    get:
      tags:
        - Notifications
      summary: Retrieve all notification settings
      parameters:
        - in: query
          name: workflowId
          schema:
            type: string
          description: >-
            Workflow ID(s) - can be single ID, comma-separated IDs, or 'null'
            for workspace-level settings
        - in: query
          name: eventType
          schema:
            type: string
            enum:
              - workflow_started
              - workflow_finished
              - workflow_failed
              - workflow_sample_finished
              - workflow_data_change
              - system_maintenance
              - service_degradation
              - credits_low
              - free_trial_ending
          description: Event type filter (optional)
      responses:
        '200':
          description: Settings retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      settings:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                            workflowId:
                              type: string
                            eventType:
                              type: string
                            eventConfiguration:
                              type: object
                            enabled:
                              type: boolean
                            channels:
                              type: array
                              items:
                                type: object
                                properties:
                                  id:
                                    type: string
                                  name:
                                    type: string
                                  channelType:
                                    type: string
                            createdAt:
                              type: string
                            updatedAt:
                              type: string
                  status:
                    type: string
                  message:
                    type: string
        '401':
          description: Unauthorized
        '500':
          description: Internal server error
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication

````