List integration clients
curl --request GET \
--url https://app.chatobserver.com/api/v2/metrics/integration-clients \
--header 'x-chatobserver-key: <api-key>'const options = {method: 'GET', headers: {'x-chatobserver-key': '<api-key>'}};
fetch('https://app.chatobserver.com/api/v2/metrics/integration-clients', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.chatobserver.com/api/v2/metrics/integration-clients"
headers = {"x-chatobserver-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"name": "<string>",
"kind": "looker_studio",
"category": "business_intelligence",
"availability": "request_only",
"marketplaceState": "published",
"authentication": "service_account_key",
"supportedJourneys": [
"schedule"
],
"documentationPath": "<string>"
}
]
}{
"error": {
"code": "internal",
"fieldPath": [
"<string>"
],
"parameters": {},
"repairActions": [
"<string>"
],
"requestId": "<string>",
"retryable": false,
"retryAfterSeconds": 1
}
}Data connections
List integration clients
Discover authorised connections, source accounts and connector catalogues.
GET
/
api
/
v2
/
metrics
/
integration-clients
List integration clients
curl --request GET \
--url https://app.chatobserver.com/api/v2/metrics/integration-clients \
--header 'x-chatobserver-key: <api-key>'const options = {method: 'GET', headers: {'x-chatobserver-key': '<api-key>'}};
fetch('https://app.chatobserver.com/api/v2/metrics/integration-clients', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.chatobserver.com/api/v2/metrics/integration-clients"
headers = {"x-chatobserver-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"name": "<string>",
"kind": "looker_studio",
"category": "business_intelligence",
"availability": "request_only",
"marketplaceState": "published",
"authentication": "service_account_key",
"supportedJourneys": [
"schedule"
],
"documentationPath": "<string>"
}
]
}{
"error": {
"code": "internal",
"fieldPath": [
"<string>"
],
"parameters": {},
"repairActions": [
"<string>"
],
"requestId": "<string>",
"retryable": false,
"retryAfterSeconds": 1
}
}