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

# Test a notification settings with mock data



## OpenAPI

````yaml post /v5/notifications/test
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/test:
    post:
      tags:
        - Notifications
      summary: Test a notification settings with mock data
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - eventType
              properties:
                eventType:
                  type: string
                  description: >-
                    Event type to test (e.g., workflow_finished,
                    workflow_data_change)
                  example: workflow_finished
                workflowId:
                  type: string
                  description: Optional workflow ID for workflow-specific testing
                  example: workflow-123
      responses:
        '200':
          description: Test event sent successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      eventId:
                        type: string
                        description: Unique identifier for the event
                      eventType:
                        type: string
                        description: Event type that was sent
                      workflowId:
                        type: string
                        description: Workflow ID used in the event (if provided)
                  status:
                    type: string
                  message:
                    type: string
        '400':
          description: Invalid request (missing eventType or invalid eventType)
        '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

````