Validate source connector configuration

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

POST
/api/v1/validate/source

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

Source connector configuration to validate

source*||||||

Source configuration

Response Body

application/json

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