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

# Send a real connectivity test to a saved destination

> Requires confirm:true. Makes one real outbound call: custom webhooks receive a test payload; zendesk runs a read-only auth probe; email only validates config. Result is sanitized to { ok, status, message }.



## OpenAPI

````yaml /openapi-v1.json post /v1/ticket-destinations/{id}/test
openapi: 3.0.0
info:
  title: Woku Client API v1
  description: >-
    Public REST API for programmatic management of woku Voice-of-Customer
    programs: trackers, VoC instruments (NPS, woku, CES, CSAT), action plans,
    support tickets, multi-channel sending and response capture. Requests are
    company-scoped by the API key; never send a company id.
  version: 1.0.0
  contact:
    name: Woku
    url: https://woku.app
    email: team@woku.app
servers:
  - url: https://clientapi.woku.app
    description: Production
security: []
tags: []
paths:
  /v1/ticket-destinations/{id}/test:
    post:
      tags:
        - v1 - ticket-destinations
      summary: Send a real connectivity test to a saved destination
      description: >-
        Requires confirm:true. Makes one real outbound call: custom webhooks
        receive a test payload; zendesk runs a read-only auth probe; email only
        validates config. Result is sanitized to { ok, status, message }.
      operationId: V1TicketDestinationsController_test
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
            format: ObjectId
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TestTicketDestinationBodyDTO'
      responses:
        '200':
          description: Sanitized test result
        '400':
          description: Not confirmed
        '404':
          description: Destination not found
      security:
        - bearer: []
components:
  schemas:
    TestTicketDestinationBodyDTO:
      type: object
      properties:
        confirm:
          type: boolean
          description: >-
            Must be true. The test sends a real request to the destination
            (custom webhooks receive a test payload; other kinds run a read-only
            auth probe).
      required:
        - confirm
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: API key
      type: http
      description: Company secret API key.

````