POST
/
connectors
curl --request POST \
  --url https://api.matia.io/v1/connectors \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "name": "<string>",
  "type": "<string>",
  "description": "<string>",
  "connection": {},
  "connectionType": "source",
  "authMethod": "direct"
}'
{
  "code": "<string>",
  "message": "<string>",
  "data": {
    "id": "<string>",
    "name": "<string>",
    "type": "<string>"
  }
}

Authorizations

x-api-key
string
header
required

Body

application/json
name
string

Name of the connector

type
string

Type of the connector

description
string
connection
object

Connection details

connectionType
enum<string>
Available options:
source,
destination
authMethod
enum<string>
Available options:
direct,
oAuth,
accessToken,
ssh

Response

200
application/json
Connector created successfully
code
string
message
string
data
object