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

# Test Notification Channel

> Send a test notification to verify the channel works

## Path Parameters

<ParamField path="id" type="string" required>
  The channel ID
</ParamField>

## Response

<ResponseField name="success" type="boolean">
  Whether the test notification was sent successfully
</ResponseField>

<ResponseField name="message" type="string">
  Status message
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST "https://kodostatus.com/api/v1/notifications/channels/550e8400-e29b-41d4-a716-446655440000/test" \
    -H "X-API-Key: your_api_key"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "message": "Test notification sent"
  }
  ```
</ResponseExample>
