Debug connector configuration

Validate and debug a connector configuration without storing it

POST
/api/v1/debug/connector

Request Body

application/json

buffer?null|
disabled?boolean
Defaultfalse
id*string
limits?null|
schedule?null|
sink*|||||
source*||||

Response Body

application/json

curl -X POST "https://loading/api/v1/debug/connector" \  -H "Content-Type: application/json" \  -d '{    "id": "string",    "sink": {      "postgres": {        "connection": {          "database": "string",          "host": "string",          "password": "string",          "user": "string"        }      }    },    "source": {      "postgres": {        "connection": {          "database": "string",          "host": "string",          "password": "string",          "user": "string"        },        "replication_type": {          "logical_replication": {}        }      }    }  }'
{
  "buffer": {},
  "disabled": false,
  "id": "string",
  "limits": {},
  "schedule": {},
  "sink": {
    "postgres": {
      "connection": {
        "database": "string",
        "host": "string",
        "max_pool_size": 0,
        "operation_lock_timeout_seconds": 0,
        "password": "string",
        "port": 5432,
        "ssl_cert": "string",
        "ssl_key": "string",
        "ssl_mode": "Prefer",
        "ssl_root_cert": "string",
        "user": "string"
      },
      "migration_strategy": {},
      "target_schema": "string"
    }
  },
  "source": {
    "postgres": {
      "catalog": {},
      "connection": {
        "database": "string",
        "host": "string",
        "max_pool_size": 0,
        "operation_lock_timeout_seconds": 0,
        "password": "string",
        "port": 5432,
        "ssl_cert": "string",
        "ssl_key": "string",
        "ssl_mode": "Prefer",
        "ssl_root_cert": "string",
        "user": "string"
      },
      "parallel_snapshots_enabled": true,
      "partitions_as_root": false,
      "replication_type": {
        "logical_replication": {}
      }
    }
  }
}
Empty