Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions descriptions/0/api.intercom.io.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6175,6 +6175,7 @@ paths:
data: []
total_count: 0
has_more: false
ai_topics:
ai_agent:
ai_agent_participated: false
schema:
Expand Down Expand Up @@ -6413,6 +6414,7 @@ paths:
data: []
total_count: 0
has_more: false
ai_topics:
ai_agent:
ai_agent_participated: false
conversation_parts:
Expand Down Expand Up @@ -6660,6 +6662,7 @@ paths:
data: []
total_count: 0
has_more: false
ai_topics:
ai_agent:
ai_agent_participated: false
conversation_parts:
Expand Down Expand Up @@ -6766,6 +6769,7 @@ paths:
data: []
total_count: 0
has_more: false
ai_topics:
ai_agent:
ai_agent_participated: false
conversation_parts:
Expand Down Expand Up @@ -7084,6 +7088,7 @@ paths:
data: []
total_count: 0
has_more: false
ai_topics:
ai_agent:
ai_agent_participated: false
schema:
Expand Down Expand Up @@ -7186,6 +7191,7 @@ paths:
data: []
total_count: 0
has_more: false
ai_topics:
ai_agent:
ai_agent_participated: false
conversation_parts:
Expand Down Expand Up @@ -7262,6 +7268,7 @@ paths:
data: []
total_count: 0
has_more: false
ai_topics:
ai_agent:
ai_agent_participated: false
conversation_parts:
Expand Down Expand Up @@ -7350,6 +7357,7 @@ paths:
data: []
total_count: 0
has_more: false
ai_topics:
ai_agent:
ai_agent_participated: false
conversation_parts:
Expand Down Expand Up @@ -7429,6 +7437,7 @@ paths:
data: []
total_count: 0
has_more: false
ai_topics:
ai_agent:
ai_agent_participated: false
conversation_parts:
Expand Down Expand Up @@ -7629,6 +7638,7 @@ paths:
data: []
total_count: 0
has_more: false
ai_topics:
ai_agent:
ai_agent_participated: false
conversation_parts:
Expand Down Expand Up @@ -7705,6 +7715,7 @@ paths:
data: []
total_count: 0
has_more: false
ai_topics:
ai_agent:
ai_agent_participated: false
conversation_parts:
Expand Down Expand Up @@ -7781,6 +7792,7 @@ paths:
data: []
total_count: 0
has_more: false
ai_topics:
ai_agent:
ai_agent_participated: false
conversation_parts:
Expand Down Expand Up @@ -7857,6 +7869,7 @@ paths:
data: []
total_count: 0
has_more: false
ai_topics:
ai_agent:
ai_agent_participated: false
conversation_parts:
Expand Down Expand Up @@ -8344,6 +8357,7 @@ paths:
data: []
total_count: 0
has_more: false
ai_topics:
ai_agent:
ai_agent_participated: false
conversation_parts:
Expand Down Expand Up @@ -16071,6 +16085,58 @@ components:
nullable: true
content_sources:
"$ref": "#/components/schemas/content_sources_list"
ai_subtopic:
title: AI Subtopic
type: object
description: An AI-generated subtopic under a topic.
properties:
type:
type: string
description: Always ai_subtopic.
example: ai_subtopic
name:
type: string
description: The name of the subtopic.
example: Payment Issues
id:
type: integer
description: The ID of the subtopic.
example: 42
nullable: true
ai_topic:
title: AI Topic
type: object
description: An AI-generated topic assigned to the conversation.
properties:
type:
type: string
description: Always ai_topic.
example: ai_topic
topic_name:
type: string
description: The name of the AI-generated topic.
example: Billing
subtopics:
type: array
description: The subtopics under this topic.
items:
$ref: '#/components/schemas/ai_subtopic'
ai_topics:
title: AI Topics
type: object
x-tags:
- AI Topics
description: AI-generated topics and subtopics for the conversation.
properties:
type:
type: string
description: Always ai_topics.
example: ai_topics
topics:
type: array
description: The list of AI-generated topics for this conversation.
items:
$ref: '#/components/schemas/ai_topic'
app:
title: App
type: object
Expand Down Expand Up @@ -18117,6 +18183,9 @@ components:
"$ref": "#/components/schemas/conversation_parts"
linked_objects:
"$ref": "#/components/schemas/linked_object_list"
ai_topics:
"$ref": "#/components/schemas/ai_topics"
nullable: true
ai_agent_participated:
type: boolean
description: Indicates whether the AI Agent participated in the conversation.
Expand Down