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
Add GET /conversations/deleted endpoint to Unstable API spec
Add new endpoint to retrieve deleted conversation IDs with deletion timestamps for compliance and audit purposes.
Changes:
- Added /conversations/deleted GET endpoint with pagination support
- Added deleted_conversation_item schema
- Added deleted_conversation_list schema
- Fixed response structure to use 'conversations' array key (consistent with conversation_list)
- All examples use updated_at field for deletion timestamp
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
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
@@ -8556,6 +8556,100 @@ paths:
8556
8556
summary: Bad request
8557
8557
value:
8558
8558
ticket_type_id: '54'
8559
+
"/conversations/deleted":
8560
+
get:
8561
+
summary: List all deleted conversation IDs
8562
+
parameters:
8563
+
- name: Intercom-Version
8564
+
in: header
8565
+
schema:
8566
+
"$ref": "#/components/schemas/intercom_version"
8567
+
- name: page
8568
+
in: query
8569
+
required: false
8570
+
description: The page of results to fetch. Defaults to first page
8571
+
example: 1
8572
+
schema:
8573
+
type: integer
8574
+
- name: per_page
8575
+
in: query
8576
+
required: false
8577
+
description: How many results per page
8578
+
schema:
8579
+
type: integer
8580
+
default: 20
8581
+
maximum: 60
8582
+
- name: order
8583
+
in: query
8584
+
required: false
8585
+
description: "`asc` or `desc`. Returns the conversation IDs in ascending or descending order. Defaults to desc"
8586
+
example: desc
8587
+
schema:
8588
+
type: string
8589
+
tags:
8590
+
- Conversations
8591
+
operationId: listDeletedConversationIds
8592
+
description: |+
8593
+
List all deleted conversation IDs.
8594
+
8595
+
{% admonition type="warning" name="Pagination" %}
8596
+
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