You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/CallTranscriptionMetadata.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
| ---- | ---- | ----------- | ----- |
7
7
|**transcription_id**|**String**| The programmable voice API transcription ID. |[optional]|
8
8
|**transcription_name**|**String**| The programmable voice API transcription name. This name could be provided by the user when creating the transcription. |[optional]|
9
-
|**transcription_url**|**String**| A URL that may be used to retrieve the transcription itself. This points to the [Get Call Transcription](/apis/voice/#operation/getCallTranscription) endpoint. |[optional]|
9
+
|**transcription_url**|**String**| A URL that may be used to retrieve the transcription itself. This points to the [Get Call Transcription](/apis/voice-apis/voice/#tag/Transcriptions/operation/getRealTimeTranscription) endpoint. |[optional]|
Copy file name to clipboardExpand all lines: docs/ConferenceMember.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
| ---- | ---- | ----------- | ----- |
7
7
|**call_id**|**String**| The call id associated with the event. |[optional]|
8
8
|**conference_id**|**String**| The unique, Bandwidth-generated ID of the conference that was recorded |[optional]|
9
-
|**member_url**|**String**| A URL that may be used to retrieve information about or update the state of this conference member. This is the URL of this member's [Get Conference Member](/apis/voice/#operation/getConferenceMember) endpoint and [Modify Conference Member](/apis/voice/#operation/updateConferenceMember) endpoint. |[optional]|
9
+
|**member_url**|**String**| A URL that may be used to retrieve information about or update the state of this conference member. This is the URL of this member's [Get Conference Member](/apis/voice-apis/voice/#tag/Conferences/operation/getConferenceMember) endpoint and [Modify Conference Member](/apis/voice-apis/voice/#tag/Conferences/operation/updateConferenceMember) endpoint. |[optional]|
10
10
|**mute**|**Boolean**| Whether or not this member is currently muted. Members who are muted are still able to hear other participants. If used in a PUT request, updates this member's mute status. Has no effect if omitted. |[optional]|
11
11
|**hold**|**Boolean**| Whether or not this member is currently on hold. Members who are on hold are not able to hear or speak in the conference. If used in a PUT request, updates this member's hold status. Has no effect if omitted. |[optional]|
12
12
|**call_ids_to_coach**|**Array<String>**| If this member had a value set for `callIdsToCoach` in its [Conference](/docs/voice/bxml/conference) verb or this list was added with a previous PUT request to modify the member, this is that list of calls. If present in a PUT request, modifies the calls that this member is coaching. Has no effect if omitted. See the documentation for the [Conference](/docs/voice/bxml/conference) verb for more details about coaching. Note that this will not add the matching calls to the conference; each call must individually execute a Conference verb to join. |[optional]|
Copy file name to clipboardExpand all lines: docs/TranscriptionsApi.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,16 +4,16 @@ All URIs are relative to *http://localhost*
4
4
5
5
| Method | HTTP request | Description |
6
6
| ------ | ------------ | ----------- |
7
-
|[**delete_real_time_transcription**](TranscriptionsApi.md#delete_real_time_transcription)|**DELETE** /accounts/{accountId}/calls/{callId}/transcriptions/{transcriptionId} | Delete a specific transcription|
8
-
|[**get_real_time_transcription**](TranscriptionsApi.md#get_real_time_transcription)|**GET** /accounts/{accountId}/calls/{callId}/transcriptions/{transcriptionId} |Retrieve a specific transcription|
9
-
|[**list_real_time_transcriptions**](TranscriptionsApi.md#list_real_time_transcriptions)|**GET** /accounts/{accountId}/calls/{callId}/transcriptions |Enumerate transcriptions made with StartTranscription|
Delete the specified transcription that was created on this call via [startTranscription](/docs/voice/bxml/startTranscription). Note: After the deletion is requested and a `200` is returned, the transcription will not be accessible anymore. However, it is not deleted immediately. This deletion process, while transparent and irreversible, can take an additional 24 to 48 hours.
Copy file name to clipboardExpand all lines: lib/bandwidth-sdk/api/transcriptions_api.rb
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ class TranscriptionsApi
19
19
definitialize(api_client=ApiClient.default)
20
20
@api_client=api_client
21
21
end
22
-
# Delete a specific transcription
22
+
# Delete Real-time Transcription
23
23
# Delete the specified transcription that was created on this call via [startTranscription](/docs/voice/bxml/startTranscription). Note: After the deletion is requested and a `200` is returned, the transcription will not be accessible anymore. However, it is not deleted immediately. This deletion process, while transparent and irreversible, can take an additional 24 to 48 hours.
24
24
# @param account_id [String] Your Bandwidth Account ID.
25
25
# @param call_id [String] Programmable Voice API Call ID.
# Delete the specified transcription that was created on this call via [startTranscription](/docs/voice/bxml/startTranscription). Note: After the deletion is requested and a `200` is returned, the transcription will not be accessible anymore. However, it is not deleted immediately. This deletion process, while transparent and irreversible, can take an additional 24 to 48 hours.
36
36
# @param account_id [String] Your Bandwidth Account ID.
37
37
# @param call_id [String] Programmable Voice API Call ID.
Copy file name to clipboardExpand all lines: lib/bandwidth-sdk/models/call_transcription_metadata.rb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ class CallTranscriptionMetadata
21
21
# The programmable voice API transcription name. This name could be provided by the user when creating the transcription.
22
22
attr_accessor:transcription_name
23
23
24
-
# A URL that may be used to retrieve the transcription itself. This points to the [Get Call Transcription](/apis/voice/#operation/getCallTranscription) endpoint.
24
+
# A URL that may be used to retrieve the transcription itself. This points to the [Get Call Transcription](/apis/voice-apis/voice/#tag/Transcriptions/operation/getRealTimeTranscription) endpoint.
25
25
attr_accessor:transcription_url
26
26
27
27
# Attribute mapping from ruby-style variable name to JSON key.
Copy file name to clipboardExpand all lines: lib/bandwidth-sdk/models/conference_member.rb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ class ConferenceMember
21
21
# The unique, Bandwidth-generated ID of the conference that was recorded
22
22
attr_accessor:conference_id
23
23
24
-
# A URL that may be used to retrieve information about or update the state of this conference member. This is the URL of this member's [Get Conference Member](/apis/voice/#operation/getConferenceMember) endpoint and [Modify Conference Member](/apis/voice/#operation/updateConferenceMember) endpoint.
24
+
# A URL that may be used to retrieve information about or update the state of this conference member. This is the URL of this member's [Get Conference Member](/apis/voice-apis/voice/#tag/Conferences/operation/getConferenceMember) endpoint and [Modify Conference Member](/apis/voice-apis/voice/#tag/Conferences/operation/updateConferenceMember) endpoint.
25
25
attr_accessor:member_url
26
26
27
27
# Whether or not this member is currently muted. Members who are muted are still able to hear other participants. If used in a PUT request, updates this member's mute status. Has no effect if omitted.
0 commit comments