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
+59-1Lines changed: 59 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10278,6 +10278,21 @@ paths:
10278
10278
in: header
10279
10279
schema:
10280
10280
"$ref": "#/components/schemas/intercom_version"
10281
+
- name: per_page
10282
+
in: query
10283
+
required: false
10284
+
description: The number of results to return per page. Defaults to 20, minimum 1, maximum 50.
10285
+
schema:
10286
+
type: integer
10287
+
default: 20
10288
+
minimum: 1
10289
+
maximum: 50
10290
+
- name: starting_after
10291
+
in: query
10292
+
required: false
10293
+
description: The cursor value from `pages.next.starting_after` in a previous response. Used to paginate through results.
10294
+
schema:
10295
+
type: string
10281
10296
tags:
10282
10297
- Data Connectors
10283
10298
operationId: listDataConnectors
@@ -10286,6 +10301,8 @@ paths:
10286
10301
10287
10302
Data connectors allow you to make HTTP requests to external APIs from Intercom workflows and AI agents.
10288
10303
Each connector in the response includes an `execution_results_url` for navigating to its execution logs.
10304
+
10305
+
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.
0 commit comments