Get connector by ID
curl --request GET \
--url https://api.wellapp.ai/v1/connectors/{id} \
--header 'Authorization: <authorization>'import requests
url = "https://api.wellapp.ai/v1/connectors/{id}"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.wellapp.ai/v1/connectors/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.wellapp.ai/v1/connectors/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.wellapp.ai/v1/connectors/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.wellapp.ai/v1/connectors/{id}")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.wellapp.ai/v1/connectors/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"type": "connector",
"id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"attributes": {
"slug": "salesforce",
"name": "Salesforce",
"description": "Connects to Salesforce CRM for sync.",
"category": "api",
"direction": "import",
"tags": [
"crm",
"cloud",
"sync"
],
"status": "active",
"version": "2.1.0",
"data_quality": {
"imported_fields": [
"invoice",
"company",
"people"
],
"last_synced": "2025-06-20T09:00:00Z"
},
"redirect_url": "https://app.well.com/connectors/salesforce/success",
"state": "active",
"created_at": "2025-10-07T14:30:00.000Z",
"updated_at": "2025-10-07T14:30:00.000Z"
},
"relationships": {
"published_by": {
"data": {
"type": "workspace",
"id": "airbyte"
}
},
"logo": {
"data": {
"type": "media",
"id": "550e8400-e29b-41d4-a716-446655440010"
}
}
},
"included": [
{
"type": "workspace",
"id": "airbyte",
"attributes": {
"name": "Airbyte",
"description": "Open-source data integration platform",
"website": "https://airbyte.com"
}
},
{
"type": "media",
"id": "550e8400-e29b-41d4-a716-446655440010",
"attributes": {
"file_name": "salesforce_logo.png",
"content_type": "image/png",
"file_size": 12345
}
}
]
}{
"code": "SCHEMA_VALIDATION_ERROR",
"status": 400,
"title": "Validation Error",
"message": "The request is invalid",
"meta": {
"log_id": "65c669d4-679c-4a8b-b8c0-fbe37699bb5b"
},
"details": [
{
"instancePath": "<string>",
"schemaPath": "<string>",
"keyword": "<string>",
"params": {},
"message": "<string>"
}
]
}{
"code": "UNAUTHORIZED",
"status": 401,
"title": "Unauthorized",
"message": "You are not authorized to access this resource",
"meta": {
"log_id": "65c669d4-679c-4a8b-b8c0-fbe37699bb5b"
}
}Connectors
Get Connectors by id
Retrieve a specific connector by its unique identifier. This endpoint supports:
Include functionality: Use the include parameter to get detailed relationship data including organization, category, and media information.
Relationship data: Returns complete connector information with all attributes and relationships.
GET
/
v1
/
connectors
/
{id}
Get connector by ID
curl --request GET \
--url https://api.wellapp.ai/v1/connectors/{id} \
--header 'Authorization: <authorization>'import requests
url = "https://api.wellapp.ai/v1/connectors/{id}"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.wellapp.ai/v1/connectors/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.wellapp.ai/v1/connectors/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.wellapp.ai/v1/connectors/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.wellapp.ai/v1/connectors/{id}")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.wellapp.ai/v1/connectors/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"type": "connector",
"id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"attributes": {
"slug": "salesforce",
"name": "Salesforce",
"description": "Connects to Salesforce CRM for sync.",
"category": "api",
"direction": "import",
"tags": [
"crm",
"cloud",
"sync"
],
"status": "active",
"version": "2.1.0",
"data_quality": {
"imported_fields": [
"invoice",
"company",
"people"
],
"last_synced": "2025-06-20T09:00:00Z"
},
"redirect_url": "https://app.well.com/connectors/salesforce/success",
"state": "active",
"created_at": "2025-10-07T14:30:00.000Z",
"updated_at": "2025-10-07T14:30:00.000Z"
},
"relationships": {
"published_by": {
"data": {
"type": "workspace",
"id": "airbyte"
}
},
"logo": {
"data": {
"type": "media",
"id": "550e8400-e29b-41d4-a716-446655440010"
}
}
},
"included": [
{
"type": "workspace",
"id": "airbyte",
"attributes": {
"name": "Airbyte",
"description": "Open-source data integration platform",
"website": "https://airbyte.com"
}
},
{
"type": "media",
"id": "550e8400-e29b-41d4-a716-446655440010",
"attributes": {
"file_name": "salesforce_logo.png",
"content_type": "image/png",
"file_size": 12345
}
}
]
}{
"code": "SCHEMA_VALIDATION_ERROR",
"status": 400,
"title": "Validation Error",
"message": "The request is invalid",
"meta": {
"log_id": "65c669d4-679c-4a8b-b8c0-fbe37699bb5b"
},
"details": [
{
"instancePath": "<string>",
"schemaPath": "<string>",
"keyword": "<string>",
"params": {},
"message": "<string>"
}
]
}{
"code": "UNAUTHORIZED",
"status": 401,
"title": "Unauthorized",
"message": "You are not authorized to access this resource",
"meta": {
"log_id": "65c669d4-679c-4a8b-b8c0-fbe37699bb5b"
}
}Headers
Bearer token for authentication
Path Parameters
The unique identifier of the connector to retrieve
Query Parameters
Include related resources in the response. Multiple values can be comma-separated.
Response
Connector retrieved successfully
Show child attributes
Show child attributes
⌘I