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

# Api Destination Test

> Save the destination form AND test the ClickHouse connection in one call, returning
JSON so the portal can update in place (no full-page reload/scroll). Mirrors the
save+test logic of the form route below.



## OpenAPI

````yaml /api/openapi.json post /api/destination/test
openapi: 3.1.0
info:
  description: >-
    Environment-aware APIs for Platinur configuration, integrations, operations,
    promotions, scheduling, monitoring, and assistant tasks.
  title: Platinur Control Plane API
  version: 1.0.0-rc3
servers:
  - description: Local Platinur control-plane API
    url: http://localhost:8080
security: []
paths:
  /api/destination/test:
    post:
      tags:
        - Control Plane
      summary: Api Destination Test
      description: >-
        Save the destination form AND test the ClickHouse connection in one
        call, returning

        JSON so the portal can update in place (no full-page reload/scroll).
        Mirrors the

        save+test logic of the form route below.
      operationId: api_destination_test_api_destination_test_post
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response

````