curl --request GET \
--url https://api.conare.ai/api/v1/connectors/{type}/actions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.conare.ai/api/v1/connectors/{type}/actions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.conare.ai/api/v1/connectors/{type}/actions', 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.conare.ai/api/v1/connectors/{type}/actions",
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: Bearer <token>"
],
]);
$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.conare.ai/api/v1/connectors/{type}/actions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.conare.ai/api/v1/connectors/{type}/actions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.conare.ai/api/v1/connectors/{type}/actions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"type": "hubspot",
"supported": true,
"enabled": true,
"automaticallyEnabledOnExecute": true,
"provider": "<string>",
"baseUrl": "<string>",
"inherited": {
"headerNames": [
"<string>"
],
"queryNames": [
"<string>"
]
},
"request": {
"allowedMethods": [
"POST"
],
"bodyTypes": [
"<string>"
],
"maxRequestBodyBytes": 123,
"maxResponseBodyBytes": 123,
"rateLimitPerMinute": 123,
"timeoutMs": 123,
"queryModes": [
"<string>"
],
"queryValueTypes": [
"<string>"
],
"blockedRequestHeaders": [
"<string>"
],
"pathRule": "<string>",
"rawQueryRule": "<string>"
}
}{
"statusCode": 123,
"code": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}{
"statusCode": 123,
"code": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}{
"statusCode": 123,
"code": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}{
"statusCode": 123,
"code": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}{
"statusCode": 123,
"code": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}{
"statusCode": 123,
"code": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}Get the action contract
Discover whether this end user’s connected account supports transactional writes and, when it does, the live request contract: provider base URL, allowed write methods, body/query shapes, blocked headers, payload limits, timeout, and per-connection rate limit.
This is the source of truth for executable writes.
catalog[].capabilities.push describes modeled destination-sync
support for a connector TYPE; it does not imply that this particular
connected account can execute transactional actions.
Requires an Integration credential with connectors:write. Connector
plane ids, credentials, and inherited secret values are never exposed.
Reading the contract does not enable the action gateway or call the
provider.
curl --request GET \
--url https://api.conare.ai/api/v1/connectors/{type}/actions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.conare.ai/api/v1/connectors/{type}/actions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.conare.ai/api/v1/connectors/{type}/actions', 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.conare.ai/api/v1/connectors/{type}/actions",
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: Bearer <token>"
],
]);
$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.conare.ai/api/v1/connectors/{type}/actions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.conare.ai/api/v1/connectors/{type}/actions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.conare.ai/api/v1/connectors/{type}/actions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"type": "hubspot",
"supported": true,
"enabled": true,
"automaticallyEnabledOnExecute": true,
"provider": "<string>",
"baseUrl": "<string>",
"inherited": {
"headerNames": [
"<string>"
],
"queryNames": [
"<string>"
]
},
"request": {
"allowedMethods": [
"POST"
],
"bodyTypes": [
"<string>"
],
"maxRequestBodyBytes": 123,
"maxResponseBodyBytes": 123,
"rateLimitPerMinute": 123,
"timeoutMs": 123,
"queryModes": [
"<string>"
],
"queryValueTypes": [
"<string>"
],
"blockedRequestHeaders": [
"<string>"
],
"pathRule": "<string>",
"rawQueryRule": "<string>"
}
}{
"statusCode": 123,
"code": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}{
"statusCode": 123,
"code": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}{
"statusCode": 123,
"code": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}{
"statusCode": 123,
"code": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}{
"statusCode": 123,
"code": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}{
"statusCode": 123,
"code": "<string>",
"message": "<string>",
"requestId": "<string>",
"details": {}
}Authorizations
A scoped Integration key, prefixed cint_. Send as
Authorization: Bearer cint_... on every request. Server-side only.
Legacy personal cmem_... keys remain accepted during migration;
team/org-scoped cmem_... keys are not valid on this API.
Path Parameters
Data-source type id. Any source-capable type in the connector catalog
(~200 sources — Gmail, Slack, HubSpot, Notion, Linear, Salesforce,
warehouses, …); enumerate them via GET /api/v1/connectors/catalog.
^[a-z0-9][a-z0-9_-]{0,63}$"hubspot"
Query Parameters
Your stable internal user ID. No colon allowed.
1 - 128^[A-Za-z0-9@._-]{1,128}$"u_123"
Response
The connected account's transactional action contract.
Data-source type id. Any source-capable type in the connector catalog
(~200 sources — Gmail, Slack, HubSpot, Notion, Linear, Salesforce,
warehouses, …); enumerate them via GET /api/v1/connectors/catalog.
^[a-z0-9][a-z0-9_-]{0,63}$"hubspot"
Whether this connected account supports transactional actions.
Whether its action gateway is currently enabled.
True when a valid execute request can lazily enable the gateway; contract discovery itself never enables it.
Provider/backend identifier, such as attio.
Fixed provider API base URL. Action paths are appended to it.
Names the connection attaches automatically. Values are never exposed; authentication headers cannot be overridden.
Show child attributes
Show child attributes
Null when transactional actions are unsupported.
Show child attributes
Show child attributes