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

# Test webhook subscription

> Send a test webhook to verify the endpoint



## OpenAPI

````yaml POST /webhooks/subscriptions/{id}/test
openapi: 3.0.3
info:
  title: NativeMessage API
  version: 1.0.0
  description: Complete API documentation for NativeMessage platform
  contact:
    name: NativeMessage Support
    email: support@nativemessage.com
servers:
  - url: https://api-message.nativehub.live/api/v1
    description: Production server
security:
  - BearerAuth: []
  - ApiKeyAuth: []
paths:
  /webhooks/subscriptions/{id}/test:
    post:
      tags:
        - Webhooks
      summary: Test webhook subscription
      description: Send a test webhook to verify the endpoint
      operationId: testWebhookSubscription
      parameters:
        - name: id
          in: path
          required: true
          description: Webhook Subscription ID
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Test webhook sent successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  response_code:
                    type: integer
                example:
                  status: sent
                  response_code: 200
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````