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
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace RetellAI
public partial interface IRetellAiClient
{
/// <summary>
/// Get the organization's CRM configuration: which CRM app is linked, the custom contact fields defined for it, and how post-call analysis data is written back to contacts. Returns an empty configuration when nothing has been set up yet.
/// Get the organization's CRM configuration: which CRM app is linked, the custom contact fields defined for it, and how Post Call Extraction data is written back to contacts. Returns an empty configuration when nothing has been set up yet.
/// </summary>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
Expand All @@ -14,7 +14,7 @@ public partial interface IRetellAiClient
global::RetellAI.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// Get the organization's CRM configuration: which CRM app is linked, the custom contact fields defined for it, and how post-call analysis data is written back to contacts. Returns an empty configuration when nothing has been set up yet.
/// Get the organization's CRM configuration: which CRM app is linked, the custom contact fields defined for it, and how Post Call Extraction data is written back to contacts. Returns an empty configuration when nothing has been set up yet.
/// </summary>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace RetellAI
public partial interface IRetellAiClient
{
/// <summary>
/// Rerun post-call analysis for a specific call. This operation incurs charges.
/// Rerun Post Call Extraction for a specific call. This operation incurs charges.
/// </summary>
/// <param name="callId">
/// Example: call_119c3f8e47135a29e65947eeb34cf12d
Expand All @@ -18,7 +18,7 @@ public partial interface IRetellAiClient
global::RetellAI.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// Rerun post-call analysis for a specific call. This operation incurs charges.
/// Rerun Post Call Extraction for a specific call. This operation incurs charges.
/// </summary>
/// <param name="callId">
/// Example: call_119c3f8e47135a29e65947eeb34cf12d
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace RetellAI
public partial interface IRetellAiClient
{
/// <summary>
/// Rerun post-chat analysis for a specific chat. This operation incurs charges.
/// Rerun Post Chat Extraction for a specific chat. This operation incurs charges.
/// </summary>
/// <param name="chatId">
/// Example: chat_16b980523634a6dc504898cda492e939
Expand All @@ -18,7 +18,7 @@ public partial interface IRetellAiClient
global::RetellAI.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// Rerun post-chat analysis for a specific chat. This operation incurs charges.
/// Rerun Post Chat Extraction for a specific chat. This operation incurs charges.
/// </summary>
/// <param name="chatId">
/// Example: chat_16b980523634a6dc504898cda492e939
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ public partial interface IRetellAiClient
/// If this option is set, the agent prompt will include call screen handling instructions for identity and call purpose questions. Set this to null to disable call screen prompt instructions.
/// </param>
/// <param name="postCallAnalysisData">
/// Post call analysis data to extract from the call. This data will augment the pre-defined variables extracted in the call analysis. This will be available after the call ends.
/// Post Call Extraction data to extract from the call. This data will augment the pre-defined variables extracted in the call analysis. This will be available after the call ends.
/// </param>
/// <param name="postCallAnalysisModel">
/// Available LLM models for agents.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public partial interface IRetellAiClient
/// Example: 86400000
/// </param>
/// <param name="postChatAnalysisData">
/// Post chat analysis data to extract from the chat. This data will augment the pre-defined variables extracted in the chat analysis. This will be available after the chat ends.
/// Post Chat Extraction data to extract from the chat. This data will augment the pre-defined variables extracted in the chat analysis. This will be available after the chat ends.
/// </param>
/// <param name="postChatAnalysisModel">
/// Available LLM models for agents.
Expand Down
Loading