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

# Répertorier les types de notifications

> Récupérez les types de notifications actives disponibles pour l’utilisateur authentifié.



## OpenAPI

````yaml /fr/api-reference/openapi.json get /notifications/types
openapi: 3.0.0
info:
  title: API Corgea
  version: 1.0.0
  description: >-
    API permettant d’interagir avec les fonctionnalités d’analyse et de gestion
    des vulnérabilités de Corgea
servers:
  - url: https://www.corgea.app/api/v1
    description: Serveur de production
security:
  - CorgeaToken: []
  - BearerAuth: []
paths:
  /notifications/types:
    get:
      tags:
        - Notifications
      summary: Répertorier les types de notifications
      description: >-
        Récupérez les types de notifications actives disponibles pour
        l’utilisateur authentifié.
      operationId: listNotificationTypes
      responses:
        '200':
          description: Types de notifications récupérés avec succès
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: ok
                  types:
                    type: array
                    items:
                      $ref: '#/components/schemas/NotificationType'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    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:
    Unauthorized:
      description: Jeton invalide ou manquant
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: Missing or invalid authorization header
  securitySchemes:
    CorgeaToken:
      type: apiKey
      in: header
      name: CORGEA-TOKEN
      description: Clé API pour l'authentification
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Jeton d’accès OAuth2 (JWT) dans l’en-tête Authorization

````