Validate sink connector configuration

Tests connection, authentication, permissions, and configuration for target.

POST
/api/v1/validate/sink

Query Parameters

connector_id?string|null

When set, fills missing secret fields from the stored connector before running validation. Used in edit mode where the frontend never has the original secret values.

Request Body

application/json

Sink connector configuration to validate

sink*|||||||

Sink configuration

Response Body

application/json

curl -X POST "https://loading/api/v1/validate/sink" \  -H "Content-Type: application/json" \  -d '{    "sink": {      "postgres": {        "connection": {          "host": "example.com",          "user": "string",          "password": "pa$$word",          "database": "string"        }      }    }  }'
[
  {
    "start": {}
  }
]
Empty