Skip to content
Open
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
33 changes: 33 additions & 0 deletions descriptions/0/api.intercom.io.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15101,6 +15101,39 @@ paths:
application/json:
schema:
$ref: "#/components/schemas/error"
"/fin_voice/call_id/{call_id}":
get:
summary: Collect Fin Voice call by call ID
description: Retrieve information about a Fin Voice call using the call ID.
operationId: collectFinVoiceCallByCallId
tags:
- Calls
parameters:
- name: call_id
in: path
required: true
description: The call ID
schema:
type: string
responses:
'200':
description: successful
content:
application/json:
schema:
$ref: "#/components/schemas/ai_call_response"
'404':
description: not found - external reference not found or not matched
content:
application/json:
schema:
$ref: "#/components/schemas/error"
default:
description: Unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/error"
"/fin_voice/external_id/{external_id}":
get:
summary: Collect Fin Voice call by external ID
Expand Down