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
+138Lines changed: 138 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9185,6 +9185,100 @@ paths:
9185
9185
summary: Bad request
9186
9186
value:
9187
9187
ticket_type_id: '54'
9188
+
"/conversations/deleted":
9189
+
get:
9190
+
summary: List all deleted conversation IDs
9191
+
parameters:
9192
+
- name: Intercom-Version
9193
+
in: header
9194
+
schema:
9195
+
"$ref": "#/components/schemas/intercom_version"
9196
+
- name: page
9197
+
in: query
9198
+
required: false
9199
+
description: The page of results to fetch. Defaults to first page
9200
+
example: 1
9201
+
schema:
9202
+
type: integer
9203
+
- name: per_page
9204
+
in: query
9205
+
required: false
9206
+
description: How many results per page
9207
+
schema:
9208
+
type: integer
9209
+
default: 20
9210
+
maximum: 60
9211
+
- name: order
9212
+
in: query
9213
+
required: false
9214
+
description: "`asc` or `desc`. Returns the conversation IDs in ascending or descending order. Defaults to desc"
9215
+
example: desc
9216
+
schema:
9217
+
type: string
9218
+
tags:
9219
+
- Conversations
9220
+
operationId: listDeletedConversationIds
9221
+
description: |+
9222
+
List all deleted conversation IDs.
9223
+
9224
+
{% admonition type="warning" name="Pagination" %}
9225
+
You can use pagination to limit the number of results returned. The default is `20` results per page. You can navigate to next pages using the `page` param.
0 commit comments