Skip to content
Merged
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
49 changes: 49 additions & 0 deletions descriptions/0/api.intercom.io.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18683,6 +18683,41 @@ components:
nullable: true
content_sources:
"$ref": "#/components/schemas/content_sources_list"
sales_agent:
title: Sales Agent
type: object
x-tags:
- Sales Agent
description: Data related to Sales Agent involvement in the conversation.
properties:
outcome:
type: string
nullable: true
description: The fixed outcome of the sales agent interaction, used for
billing and tracking.
enum:
- qualified
- disqualified
- product_discovery
- escalated_to_support
- spam
example: qualified
routing_outcome:
type: string
nullable: true
description: The identifier of the user-defined routing outcome selected
by the sales agent.
example: enterprise_sales
collected_data:
type: object
nullable: true
description: A flat key-value map of memory fields collected by the sales
agent during the conversation.
additionalProperties:
type: string
example:
email: user@example.com
company.name: Acme Inc
ai_subtopic:
title: AI Subtopic
type: object
Expand Down Expand Up @@ -21046,6 +21081,13 @@ components:
ai_agent:
"$ref": "#/components/schemas/ai_agent"
nullable: true
sales_agent_participated:
type: boolean
description: Indicates whether the Sales Agent participated in the conversation.
example: false
sales_agent:
"$ref": "#/components/schemas/sales_agent"
nullable: true
conversation:
title: Conversation
type: object
Expand Down Expand Up @@ -21164,6 +21206,13 @@ components:
ai_agent:
"$ref": "#/components/schemas/ai_agent"
nullable: true
sales_agent_participated:
type: boolean
description: Indicates whether the Sales Agent participated in the conversation.
example: false
sales_agent:
"$ref": "#/components/schemas/sales_agent"
nullable: true
conversation_attachment_files:
title: Conversation attachment files
type: object
Expand Down
Loading