Create a new connector

Create a new connector with a specified ID

POST
/api/v1/connectors/{connector_id}

Path Parameters

connector_id*string

Unique Connector ID

Request Body

application/json

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

Response Body

curl -X POST "https://loading/api/v1/connectors/string" \  -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": {}        }      }    }  }'
Empty
Empty
Empty