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
+73-9Lines changed: 73 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -10046,6 +10046,21 @@ paths:
10046
10046
in: header
10047
10047
schema:
10048
10048
"$ref": "#/components/schemas/intercom_version"
10049
+
- name: per_page
10050
+
in: query
10051
+
required: false
10052
+
description: The number of results to return per page. Defaults to 20, minimum 1, maximum 50.
10053
+
schema:
10054
+
type: integer
10055
+
default: 20
10056
+
minimum: 1
10057
+
maximum: 50
10058
+
- name: starting_after
10059
+
in: query
10060
+
required: false
10061
+
description: The cursor value from `pages.next.starting_after` in a previous response. Used to paginate through results.
10062
+
schema:
10063
+
type: string
10049
10064
tags:
10050
10065
- Data Connectors
10051
10066
operationId: listDataConnectors
@@ -10054,6 +10069,8 @@ paths:
10054
10069
10055
10070
Data connectors allow you to make HTTP requests to external APIs from Intercom workflows and AI agents.
10056
10071
Each connector in the response includes an `execution_results_url` for navigating to its execution logs.
10072
+
10073
+
Results are ordered by `updated_at` descending and paginated using cursor-based pagination. Use the `starting_after` cursor from `pages.next` to fetch the next page. When `pages.next` is absent, you have reached the last page.
10057
10074
responses:
10058
10075
'200':
10059
10076
description: successful
@@ -10070,12 +10087,33 @@ paths:
10070
10087
description: Posts conversation updates to Slack channel
0 commit comments