Skip to content
Merged
Show file tree
Hide file tree
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
38 changes: 38 additions & 0 deletions descriptions/0/api.intercom.io.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16439,6 +16439,44 @@ paths:
application/json:
schema:
$ref: "#/components/schemas/error"
"/fin_voice/conversation/{conversation_id}":
get:
summary: Collect Fin Voice calls by conversation ID
description: |
Retrieve information about Fin Voice calls associated with a conversation.

Returns all matched calls for the given conversation ID. A conversation may have multiple associated calls.
operationId: collectFinVoiceCallsByConversationId
tags:
- Calls
parameters:
- name: conversation_id
in: path
required: true
description: The Intercom conversation identifier
schema:
type: string
responses:
'200':
description: successful
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/ai_call_response"
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: "#/components/schemas/error"
default:
description: Unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/error"
components:
schemas:
datetime:
Expand Down
38 changes: 38 additions & 0 deletions descriptions/2.15/api.intercom.io.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14585,6 +14585,44 @@ paths:
application/json:
schema:
$ref: "#/components/schemas/error"
"/fin_voice/conversation/{conversation_id}":
get:
summary: Collect Fin Voice calls by conversation ID
description: |
Retrieve information about Fin Voice calls associated with a conversation.

Returns all matched calls for the given conversation ID. A conversation may have multiple associated calls.
operationId: collectFinVoiceCallsByConversationId
tags:
- Calls
parameters:
- name: conversation_id
in: path
required: true
description: The Intercom conversation identifier
schema:
type: string
responses:
'200':
description: successful
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/ai_call_response"
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: "#/components/schemas/error"
default:
description: Unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/error"
"/export/workflows/{id}":
get:
summary: Export a workflow
Expand Down
Loading