You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: descriptions/0/api.intercom.io.yaml
+254-1Lines changed: 254 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10553,7 +10553,7 @@ paths:
10553
10553
- Data Connectors
10554
10554
operationId: createDataConnector
10555
10555
description: |
10556
-
Create a new data connector. The connector is created in `draft` state. Configure its URL, headers, data inputs, and other settings, then publish it to `live` when ready.
10556
+
Create a new data connector. The connector is created in `draft` state. Configure its URL, headers, data inputs, and other settings, then set it to `live` when ready.
10557
10557
responses:
10558
10558
'201':
10559
10559
description: Data connector created
@@ -10864,6 +10864,149 @@ paths:
10864
10864
message: Access Token Invalid
10865
10865
schema:
10866
10866
"$ref": "#/components/schemas/error"
10867
+
patch:
10868
+
summary: Update a data connector
10869
+
parameters:
10870
+
- name: Intercom-Version
10871
+
in: header
10872
+
schema:
10873
+
"$ref": "#/components/schemas/intercom_version"
10874
+
- name: id
10875
+
in: path
10876
+
required: true
10877
+
description: The unique identifier of the data connector.
10878
+
example: '12345'
10879
+
schema:
10880
+
type: string
10881
+
tags:
10882
+
- Data Connectors
10883
+
operationId: updateDataConnector
10884
+
description: |
10885
+
Update an existing data connector. Only provided fields are changed. Set `state` to `live` or `draft` to change the connector's state.
summary: List execution results for a data connector
@@ -22485,6 +22628,116 @@ components:
22485
22628
example: false
22486
22629
required:
22487
22630
- name
22631
+
update_data_connector_request:
22632
+
title: Update Data Connector Request
22633
+
type: object
22634
+
description: |
22635
+
Update an existing data connector. All fields are optional — only provided fields will be updated. Set `state` to `live` or `draft` to change the connector's state.
22636
+
properties:
22637
+
name:
22638
+
type: string
22639
+
description: The name of the data connector.
22640
+
example: Updated Connector Name
22641
+
description:
22642
+
type: string
22643
+
description: A description of what this data connector does.
22644
+
example: Updated description
22645
+
state:
22646
+
type: string
22647
+
description: The desired state of the connector.
22648
+
enum:
22649
+
- draft
22650
+
- live
22651
+
http_method:
22652
+
type: string
22653
+
description: The HTTP method used by the data connector.
22654
+
enum:
22655
+
- get
22656
+
- post
22657
+
- put
22658
+
- delete
22659
+
- patch
22660
+
example: post
22661
+
url:
22662
+
type: string
22663
+
description: The URL of the external API endpoint. Supports template variables like `{{order_id}}`.
0 commit comments