File tree Expand file tree Collapse file tree 2 files changed +76
-0
lines changed
Expand file tree Collapse file tree 2 files changed +76
-0
lines changed Original file line number Diff line number Diff line change @@ -16669,6 +16669,44 @@ paths:
1666916669 application/json:
1667016670 schema:
1667116671 $ref: "#/components/schemas/error"
16672+ "/fin_voice/conversation/{conversation_id}":
16673+ get:
16674+ summary: Collect Fin Voice calls by conversation ID
16675+ description: |
16676+ Retrieve information about Fin Voice calls associated with a conversation.
16677+
16678+ Returns all matched calls for the given conversation ID. A conversation may have multiple associated calls.
16679+ operationId: collectFinVoiceCallsByConversationId
16680+ tags:
16681+ - Calls
16682+ parameters:
16683+ - name: conversation_id
16684+ in: path
16685+ required: true
16686+ description: The Intercom conversation identifier
16687+ schema:
16688+ type: string
16689+ responses:
16690+ '200':
16691+ description: successful
16692+ content:
16693+ application/json:
16694+ schema:
16695+ type: array
16696+ items:
16697+ $ref: "#/components/schemas/ai_call_response"
16698+ '401':
16699+ description: Unauthorized
16700+ content:
16701+ application/json:
16702+ schema:
16703+ $ref: "#/components/schemas/error"
16704+ default:
16705+ description: Unexpected error
16706+ content:
16707+ application/json:
16708+ schema:
16709+ $ref: "#/components/schemas/error"
1667216710components:
1667316711 schemas:
1667416712 datetime:
Original file line number Diff line number Diff line change @@ -14585,6 +14585,44 @@ paths:
1458514585 application/json:
1458614586 schema:
1458714587 $ref: "#/components/schemas/error"
14588+ "/fin_voice/conversation/{conversation_id}":
14589+ get:
14590+ summary: Collect Fin Voice calls by conversation ID
14591+ description: |
14592+ Retrieve information about Fin Voice calls associated with a conversation.
14593+
14594+ Returns all matched calls for the given conversation ID. A conversation may have multiple associated calls.
14595+ operationId: collectFinVoiceCallsByConversationId
14596+ tags:
14597+ - Calls
14598+ parameters:
14599+ - name: conversation_id
14600+ in: path
14601+ required: true
14602+ description: The Intercom conversation identifier
14603+ schema:
14604+ type: string
14605+ responses:
14606+ '200':
14607+ description: successful
14608+ content:
14609+ application/json:
14610+ schema:
14611+ type: array
14612+ items:
14613+ $ref: "#/components/schemas/ai_call_response"
14614+ '401':
14615+ description: Unauthorized
14616+ content:
14617+ application/json:
14618+ schema:
14619+ $ref: "#/components/schemas/error"
14620+ default:
14621+ description: Unexpected error
14622+ content:
14623+ application/json:
14624+ schema:
14625+ $ref: "#/components/schemas/error"
1458814626 "/export/workflows/{id}":
1458914627 get:
1459014628 summary: Export a workflow
You can’t perform that action at this time.
0 commit comments