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
2 changes: 1 addition & 1 deletion specs/signalwire-rest/calling-api/calls/main.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace CallingAPI.Calls {
interface Calls {
@summary("Send Call Commands")
@doc("""
Unified OpenRPC-style endpoint for executing call methods through command-based dispatch.
Unified JSON-RPC style endpoint for executing call methods through command-based dispatch.
Send a request with the appropriate `command` field to invoke the desired call operation.
This endpoint provides a single interface for all call-related methods including creation, updates, termination, and AI conversation control.
""")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ model CallUpdateCurrentCallRequest {

@discriminated(#{discriminatorPropertyName: "command", envelope: "none"})
@doc("""
Call request union for OpenRPC-style method dispatch. Use the `command` field to specify which call method to invoke:
Call request union for JSON-RPC style method dispatch. Use the `command` field to specify which call method to invoke:

- **`dial`** - Create and initiate a new outbound call to a destination. Returns immediately with call details while the call is being established in the background.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ paths:
operationId: call-commands
summary: Send Call Commands
description: |-
Unified OpenRPC-style endpoint for executing call methods through command-based dispatch.
Unified JSON-RPC style endpoint for executing call methods through command-based dispatch.
Send a request with the appropriate `command` field to invoke the desired call operation.
This endpoint provides a single interface for all call-related methods including creation, updates, termination, and AI conversation control.
parameters: []
Expand Down Expand Up @@ -373,7 +373,7 @@ components:
calling.ai_unhold: '#/components/schemas/CallUnholdRequest'
calling.ai_message: '#/components/schemas/CallAIMessageRequest'
description: |-
Call request union for OpenRPC-style method dispatch. Use the `command` field to specify which call method to invoke:
Call request union for JSON-RPC style method dispatch. Use the `command` field to specify which call method to invoke:

- **`dial`** - Create and initiate a new outbound call to a destination. Returns immediately with call details while the call is being established in the background.

Expand Down