Skip to content

Commit 5df1b9b

Browse files
authored
Document GET /data_connectors/{id} - missing show endpoint (#403)
1 parent 29cd18b commit 5df1b9b

File tree

2 files changed

+73
-0
lines changed

2 files changed

+73
-0
lines changed

descriptions/0/api.intercom.io.yaml

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10228,6 +10228,76 @@ paths:
1022810228
message: Access Token Invalid
1022910229
schema:
1023010230
"$ref": "#/components/schemas/error"
10231+
"/data_connectors/{id}":
10232+
get:
10233+
summary: Retrieve a data connector
10234+
parameters:
10235+
- name: Intercom-Version
10236+
in: header
10237+
schema:
10238+
"$ref": "#/components/schemas/intercom_version"
10239+
- name: id
10240+
in: path
10241+
description: The unique identifier of the data connector
10242+
example: '12345'
10243+
required: true
10244+
schema:
10245+
type: string
10246+
tags:
10247+
- Data Connectors
10248+
operationId: RetrieveDataConnector
10249+
description: |
10250+
You can retrieve a single data connector by its ID.
10251+
10252+
The response includes full detail about the connector including its configuration, data inputs, response fields, and object mappings.
10253+
responses:
10254+
'200':
10255+
description: Data connector found
10256+
content:
10257+
application/json:
10258+
examples:
10259+
Data connector found:
10260+
value:
10261+
type: data_connector
10262+
id: '12345'
10263+
name: Slack Notification Service
10264+
description: Posts conversation updates to Slack channel
10265+
state: live
10266+
http_method: post
10267+
direct_fin_usage: false
10268+
created_at: '2025-11-15T09:30:00Z'
10269+
updated_at: '2026-01-20T14:22:15Z'
10270+
execution_results_url: "/data_connectors/12345/execution_results"
10271+
schema:
10272+
"$ref": "#/components/schemas/data_connector"
10273+
'404':
10274+
description: Data connector not found
10275+
content:
10276+
application/json:
10277+
examples:
10278+
Data connector not found:
10279+
value:
10280+
type: error.list
10281+
request_id: b4a45e2c-7a8d-4f3e-9c1a-2d5e8f7a6b3c
10282+
errors:
10283+
- code: data_connector_not_found
10284+
message: Data connector not found
10285+
schema:
10286+
"$ref": "#/components/schemas/error"
10287+
'401':
10288+
description: Unauthorized
10289+
content:
10290+
application/json:
10291+
examples:
10292+
Unauthorized:
10293+
value:
10294+
type: error.list
10295+
request_id: test-uuid-replacement
10296+
errors:
10297+
- code: unauthorized
10298+
message: Access Token Invalid
10299+
schema:
10300+
"$ref": "#/components/schemas/error"
1023110301
"/data_connectors/{data_connector_id}/execution_results":
1023210302
get:
1023310303
summary: List execution results for a data connector

descriptions/0/changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
## `GET /data_connectors/{id}` added
2+
Added missing show endpoint for retrieving a single data connector by ID.
3+
14
## `GET /messages/whatsapp/status` added
25
Added missing endpoint for checking WhatsApp message delivery status.

0 commit comments

Comments
 (0)