Connectors
Create a connector
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
Body
application/json
Response
200
application/json
Connector created successfully
The response is of type object
.
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>"
}
}
Assistant
Responses are generated using AI and may contain mistakes.