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

# List Company Notification Defaults

> Retrieve company-level email and webhook defaults for active notification types. Company admin access is required.



## OpenAPI

````yaml /api-reference/openapi.json get /notifications/company-defaults
openapi: 3.0.0
info:
  title: Corgea API
  version: 1.0.0
  description: >-
    API for interacting with Corgea's scanning and vulnerability management
    features
servers:
  - url: https://www.corgea.app/api/v1
    description: Production server
security:
  - CorgeaToken: []
  - BearerAuth: []
paths:
  /notifications/company-defaults:
    get:
      tags:
        - Notifications
      summary: List Company Notification Defaults
      description: >-
        Retrieve company-level email and webhook defaults for active
        notification types. Company admin access is required.
      operationId: listCompanyNotificationDefaults
      responses:
        '200':
          description: Company notification defaults retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: ok
                  defaults:
                    type: array
                    items:
                      $ref: '#/components/schemas/CompanyNotificationDefault'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/AdminRequired'
components:
  schemas:
    CompanyNotificationDefault:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/NotificationType'
        email_enabled:
          type: boolean
          nullable: true
          description: Company email default; null inherits the platform default
        webhook_enabled:
          type: boolean
          nullable: true
          description: Company webhook default; null inherits the platform default
    NotificationType:
      type: object
      properties:
        code:
          type: string
          example: scheduled_scan.daily_report
        name:
          type: string
          example: Daily Scheduled Scan Report
        description:
          type: string
          example: >-
            Summary email sent once per day with new issues discovered by
            scheduled scans.
        category:
          type: string
          example: scheduled_scans
        audience:
          type: string
          enum:
            - company_admins
            - all_users
        default_email_enabled:
          type: boolean
        default_webhook_enabled:
          type: boolean
  responses:
    BadRequest:
      description: Invalid request
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: Invalid JSON body
    Unauthorized:
      description: Invalid or missing token
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: Missing or invalid authorization header
    AdminRequired:
      description: Company admin access is required
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: Admin permission required
  securitySchemes:
    CorgeaToken:
      type: apiKey
      in: header
      name: CORGEA-TOKEN
      description: API key for authentication
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: OAuth2 access token (JWT) in the Authorization header

````