https://github.com/bandwidth/ruby-sdk
Bandwidth Ruby SDK
https://github.com/bandwidth/ruby-sdk
sdk sdlc-enforced
Last synced: 7 days ago
JSON representation
Bandwidth Ruby SDK
- Host: GitHub
- URL: https://github.com/bandwidth/ruby-sdk
- Owner: Bandwidth
- Created: 2019-10-04T17:09:38.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2025-03-25T21:29:58.000Z (11 months ago)
- Last Synced: 2025-03-31T18:21:15.380Z (11 months ago)
- Topics: sdk, sdlc-enforced
- Language: Ruby
- Homepage: https://dev.bandwidth.com
- Size: 1.51 MB
- Stars: 7
- Watchers: 38
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# bandwidth-sdk
[](https://badge.fury.io/rb/bandwidth-sdk)
[](https://github.com/Bandwidth/ruby-sdk/actions/workflows/test-nightly.yml)
[](https://github.com/rubocop/rubocop)
| **OS** | **Ruby** |
|:------------:|:------------------:|
| Windows 2022 | 3.0, 3.1, 3.2, 3.3 |
| Windows 2025 | 3.0, 3.1, 3.2, 3.3 |
| Ubuntu 22.04 | 3.0, 3.1, 3.2, 3.3 |
| Ubuntu 24.04 | 3.0, 3.1, 3.2, 3.3 |
Bandwidth - the Ruby gem for the Bandwidth SDK
### Generated with the command:
`openapi-generator generate -g ruby -i bandwidth.yml -c openapi-config.yml -o ./`
Bandwidth's Communication APIs
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 1.0.0
- Package version: 1.0.0
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
For more information, please visit [https://dev.bandwidth.com](https://dev.bandwidth.com)
## Installation
### Install from RubyGems
```shell
gem install bandwidth-sdk
```
### Build a gem
To build the Ruby code into a gem:
```shell
gem build bandwidth-sdk.gemspec
```
Then either install the gem locally:
```shell
gem install ./bandwidth-sdk-1.0.0.gem
```
(for development, run `gem install --dev ./bandwidth-sdk-1.0.0.gem` to install the development dependencies)
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
Finally add this to the Gemfile:
gem 'bandwidth-sdk', '~> 1.0.0'
### Install from Git
If the Ruby gem is hosted at a git repository: https://github.com/GIT_USER_ID/GIT_REPO_ID, then add the following in the Gemfile:
gem 'bandwidth-sdk', :git => 'https://github.com/GIT_USER_ID/GIT_REPO_ID.git'
### Include the Ruby code directly
Include the Ruby code directly using `-I` as follows:
```shell
ruby -Ilib script.rb
```
## Getting Started
Please follow the [installation](#installation) procedure and then run the following code:
```ruby
# Load the gem
require 'bandwidth-sdk'
# Setup authorization
Bandwidth.configure do |config|
# Configure HTTP basic authorization: Basic
config.username = 'YOUR_USERNAME'
config.password = 'YOUR_PASSWORD'
# Configure faraday connection
config.configure_faraday_connection { |connection| 'YOUR CONNECTION CONFIG PROC' }
# Configure OAuth2 access token for authorization: OAuth2
config.access_token = 'YOUR_ACCESS TOKEN'
# Or use your client ID and client secret to obtain an access token
config.client_id = 'YOUR_CLIENT_ID'
config.client_secret = 'YOUR_CLIENT_SECRET'
# Configure a proc to get access tokens in lieu of the static access_token configuration
config.access_token_getter = -> { 'YOUR TOKEN GETTER PROC' }
# Configure faraday connection
config.configure_faraday_connection { |connection| 'YOUR CONNECTION CONFIG PROC' }
end
api_instance = Bandwidth::CallsApi.new
account_id = '9900000' # String | Your Bandwidth Account ID.
create_call = Bandwidth::CreateCall.new({to: '+19195551234', from: '+15555551212', application_id: '1234-qwer-5679-tyui', answer_url: 'https://www.myCallbackServer.example/webhooks/answer'}) # CreateCall | JSON object containing information to create an outbound call
begin
#Create Call
result = api_instance.create_call(account_id, create_call)
p result
rescue Bandwidth::ApiError => e
puts "Exception when calling CallsApi->create_call: #{e}"
end
```
## Documentation for API Endpoints
All URIs are relative to *http://localhost*
Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*Bandwidth::CallsApi* | [**create_call**](docs/CallsApi.md#create_call) | **POST** /accounts/{accountId}/calls | Create Call
*Bandwidth::CallsApi* | [**get_call_state**](docs/CallsApi.md#get_call_state) | **GET** /accounts/{accountId}/calls/{callId} | Get Call State Information
*Bandwidth::CallsApi* | [**list_calls**](docs/CallsApi.md#list_calls) | **GET** /accounts/{accountId}/calls | Get Calls
*Bandwidth::CallsApi* | [**update_call**](docs/CallsApi.md#update_call) | **POST** /accounts/{accountId}/calls/{callId} | Update Call
*Bandwidth::CallsApi* | [**update_call_bxml**](docs/CallsApi.md#update_call_bxml) | **PUT** /accounts/{accountId}/calls/{callId}/bxml | Update Call BXML
*Bandwidth::ConferencesApi* | [**download_conference_recording**](docs/ConferencesApi.md#download_conference_recording) | **GET** /accounts/{accountId}/conferences/{conferenceId}/recordings/{recordingId}/media | Download Conference Recording
*Bandwidth::ConferencesApi* | [**get_conference**](docs/ConferencesApi.md#get_conference) | **GET** /accounts/{accountId}/conferences/{conferenceId} | Get Conference Information
*Bandwidth::ConferencesApi* | [**get_conference_member**](docs/ConferencesApi.md#get_conference_member) | **GET** /accounts/{accountId}/conferences/{conferenceId}/members/{memberId} | Get Conference Member
*Bandwidth::ConferencesApi* | [**get_conference_recording**](docs/ConferencesApi.md#get_conference_recording) | **GET** /accounts/{accountId}/conferences/{conferenceId}/recordings/{recordingId} | Get Conference Recording Information
*Bandwidth::ConferencesApi* | [**list_conference_recordings**](docs/ConferencesApi.md#list_conference_recordings) | **GET** /accounts/{accountId}/conferences/{conferenceId}/recordings | Get Conference Recordings
*Bandwidth::ConferencesApi* | [**list_conferences**](docs/ConferencesApi.md#list_conferences) | **GET** /accounts/{accountId}/conferences | Get Conferences
*Bandwidth::ConferencesApi* | [**update_conference**](docs/ConferencesApi.md#update_conference) | **POST** /accounts/{accountId}/conferences/{conferenceId} | Update Conference
*Bandwidth::ConferencesApi* | [**update_conference_bxml**](docs/ConferencesApi.md#update_conference_bxml) | **PUT** /accounts/{accountId}/conferences/{conferenceId}/bxml | Update Conference BXML
*Bandwidth::ConferencesApi* | [**update_conference_member**](docs/ConferencesApi.md#update_conference_member) | **PUT** /accounts/{accountId}/conferences/{conferenceId}/members/{memberId} | Update Conference Member
*Bandwidth::MFAApi* | [**generate_messaging_code**](docs/MFAApi.md#generate_messaging_code) | **POST** /accounts/{accountId}/code/messaging | Messaging Authentication Code
*Bandwidth::MFAApi* | [**generate_voice_code**](docs/MFAApi.md#generate_voice_code) | **POST** /accounts/{accountId}/code/voice | Voice Authentication Code
*Bandwidth::MFAApi* | [**verify_code**](docs/MFAApi.md#verify_code) | **POST** /accounts/{accountId}/code/verify | Verify Authentication Code
*Bandwidth::MediaApi* | [**delete_media**](docs/MediaApi.md#delete_media) | **DELETE** /users/{accountId}/media/{mediaId} | Delete Media
*Bandwidth::MediaApi* | [**get_media**](docs/MediaApi.md#get_media) | **GET** /users/{accountId}/media/{mediaId} | Get Media
*Bandwidth::MediaApi* | [**list_media**](docs/MediaApi.md#list_media) | **GET** /users/{accountId}/media | List Media
*Bandwidth::MediaApi* | [**upload_media**](docs/MediaApi.md#upload_media) | **PUT** /users/{accountId}/media/{mediaId} | Upload Media
*Bandwidth::MessagesApi* | [**create_message**](docs/MessagesApi.md#create_message) | **POST** /users/{accountId}/messages | Create Message
*Bandwidth::MessagesApi* | [**list_messages**](docs/MessagesApi.md#list_messages) | **GET** /users/{accountId}/messages | List Messages
*Bandwidth::MultiChannelApi* | [**create_multi_channel_message**](docs/MultiChannelApi.md#create_multi_channel_message) | **POST** /users/{accountId}/messages/multiChannel | Create Multi-Channel Message
*Bandwidth::PhoneNumberLookupApi* | [**create_async_bulk_lookup**](docs/PhoneNumberLookupApi.md#create_async_bulk_lookup) | **POST** /accounts/{accountId}/phoneNumberLookup/bulk | Create Asynchronous Bulk Number Lookup
*Bandwidth::PhoneNumberLookupApi* | [**create_sync_lookup**](docs/PhoneNumberLookupApi.md#create_sync_lookup) | **POST** /accounts/{accountId}/phoneNumberLookup | Create Synchronous Number Lookup
*Bandwidth::PhoneNumberLookupApi* | [**get_async_bulk_lookup**](docs/PhoneNumberLookupApi.md#get_async_bulk_lookup) | **GET** /accounts/{accountId}/phoneNumberLookup/bulk/{requestId} | Get Asynchronous Bulk Number Lookup
*Bandwidth::RecordingsApi* | [**delete_recording**](docs/RecordingsApi.md#delete_recording) | **DELETE** /accounts/{accountId}/calls/{callId}/recordings/{recordingId} | Delete Recording
*Bandwidth::RecordingsApi* | [**delete_recording_media**](docs/RecordingsApi.md#delete_recording_media) | **DELETE** /accounts/{accountId}/calls/{callId}/recordings/{recordingId}/media | Delete Recording Media
*Bandwidth::RecordingsApi* | [**delete_recording_transcription**](docs/RecordingsApi.md#delete_recording_transcription) | **DELETE** /accounts/{accountId}/calls/{callId}/recordings/{recordingId}/transcription | Delete Transcription
*Bandwidth::RecordingsApi* | [**download_call_recording**](docs/RecordingsApi.md#download_call_recording) | **GET** /accounts/{accountId}/calls/{callId}/recordings/{recordingId}/media | Download Recording
*Bandwidth::RecordingsApi* | [**get_call_recording**](docs/RecordingsApi.md#get_call_recording) | **GET** /accounts/{accountId}/calls/{callId}/recordings/{recordingId} | Get Call Recording
*Bandwidth::RecordingsApi* | [**get_recording_transcription**](docs/RecordingsApi.md#get_recording_transcription) | **GET** /accounts/{accountId}/calls/{callId}/recordings/{recordingId}/transcription | Get Transcription
*Bandwidth::RecordingsApi* | [**list_account_call_recordings**](docs/RecordingsApi.md#list_account_call_recordings) | **GET** /accounts/{accountId}/recordings | Get Call Recordings
*Bandwidth::RecordingsApi* | [**list_call_recordings**](docs/RecordingsApi.md#list_call_recordings) | **GET** /accounts/{accountId}/calls/{callId}/recordings | List Call Recordings
*Bandwidth::RecordingsApi* | [**transcribe_call_recording**](docs/RecordingsApi.md#transcribe_call_recording) | **POST** /accounts/{accountId}/calls/{callId}/recordings/{recordingId}/transcription | Create Transcription Request
*Bandwidth::RecordingsApi* | [**update_call_recording_state**](docs/RecordingsApi.md#update_call_recording_state) | **PUT** /accounts/{accountId}/calls/{callId}/recording | Update Recording
*Bandwidth::StatisticsApi* | [**get_statistics**](docs/StatisticsApi.md#get_statistics) | **GET** /accounts/{accountId}/statistics | Get Account Statistics
*Bandwidth::TollFreeVerificationApi* | [**create_webhook_subscription**](docs/TollFreeVerificationApi.md#create_webhook_subscription) | **POST** /accounts/{accountId}/tollFreeVerification/webhooks/subscriptions | Create Webhook Subscription
*Bandwidth::TollFreeVerificationApi* | [**delete_verification_request**](docs/TollFreeVerificationApi.md#delete_verification_request) | **DELETE** /accounts/{accountId}/phoneNumbers/{phoneNumber}/tollFreeVerification | Delete a Toll-Free Verification Submission
*Bandwidth::TollFreeVerificationApi* | [**delete_webhook_subscription**](docs/TollFreeVerificationApi.md#delete_webhook_subscription) | **DELETE** /accounts/{accountId}/tollFreeVerification/webhooks/subscriptions/{id} | Delete Webhook Subscription
*Bandwidth::TollFreeVerificationApi* | [**get_toll_free_verification_status**](docs/TollFreeVerificationApi.md#get_toll_free_verification_status) | **GET** /accounts/{accountId}/phoneNumbers/{phoneNumber}/tollFreeVerification | Get Toll-Free Verification Status
*Bandwidth::TollFreeVerificationApi* | [**list_toll_free_use_cases**](docs/TollFreeVerificationApi.md#list_toll_free_use_cases) | **GET** /tollFreeVerification/useCases | List Toll-Free Use Cases
*Bandwidth::TollFreeVerificationApi* | [**list_webhook_subscriptions**](docs/TollFreeVerificationApi.md#list_webhook_subscriptions) | **GET** /accounts/{accountId}/tollFreeVerification/webhooks/subscriptions | List Webhook Subscriptions
*Bandwidth::TollFreeVerificationApi* | [**request_toll_free_verification**](docs/TollFreeVerificationApi.md#request_toll_free_verification) | **POST** /accounts/{accountId}/tollFreeVerification | Request Toll-Free Verification
*Bandwidth::TollFreeVerificationApi* | [**update_toll_free_verification_request**](docs/TollFreeVerificationApi.md#update_toll_free_verification_request) | **PUT** /accounts/{accountId}/phoneNumbers/{phoneNumber}/tollFreeVerification | Update Toll-Free Verification Request
*Bandwidth::TollFreeVerificationApi* | [**update_webhook_subscription**](docs/TollFreeVerificationApi.md#update_webhook_subscription) | **PUT** /accounts/{accountId}/tollFreeVerification/webhooks/subscriptions/{id} | Update Webhook Subscription
*Bandwidth::TranscriptionsApi* | [**delete_real_time_transcription**](docs/TranscriptionsApi.md#delete_real_time_transcription) | **DELETE** /accounts/{accountId}/calls/{callId}/transcriptions/{transcriptionId} | Delete Real-time Transcription
*Bandwidth::TranscriptionsApi* | [**get_real_time_transcription**](docs/TranscriptionsApi.md#get_real_time_transcription) | **GET** /accounts/{accountId}/calls/{callId}/transcriptions/{transcriptionId} | Get Real-time Transcription
*Bandwidth::TranscriptionsApi* | [**list_real_time_transcriptions**](docs/TranscriptionsApi.md#list_real_time_transcriptions) | **GET** /accounts/{accountId}/calls/{callId}/transcriptions | List Real-time Transcriptions
## Documentation for Models
- [Bandwidth::AccountStatistics](docs/AccountStatistics.md)
- [Bandwidth::AdditionalDenialReason](docs/AdditionalDenialReason.md)
- [Bandwidth::Address](docs/Address.md)
- [Bandwidth::AnswerCallback](docs/AnswerCallback.md)
- [Bandwidth::AsyncLookupRequest](docs/AsyncLookupRequest.md)
- [Bandwidth::BlockedWebhook](docs/BlockedWebhook.md)
- [Bandwidth::BridgeCompleteCallback](docs/BridgeCompleteCallback.md)
- [Bandwidth::BridgeTargetCompleteCallback](docs/BridgeTargetCompleteCallback.md)
- [Bandwidth::BusinessEntityTypeEnum](docs/BusinessEntityTypeEnum.md)
- [Bandwidth::BusinessRegistrationTypeEnum](docs/BusinessRegistrationTypeEnum.md)
- [Bandwidth::CallDirectionEnum](docs/CallDirectionEnum.md)
- [Bandwidth::CallRecordingMetadata](docs/CallRecordingMetadata.md)
- [Bandwidth::CallState](docs/CallState.md)
- [Bandwidth::CallStateEnum](docs/CallStateEnum.md)
- [Bandwidth::CallTranscription](docs/CallTranscription.md)
- [Bandwidth::CallTranscriptionDetectedLanguageEnum](docs/CallTranscriptionDetectedLanguageEnum.md)
- [Bandwidth::CallTranscriptionMetadata](docs/CallTranscriptionMetadata.md)
- [Bandwidth::CallTranscriptionResponse](docs/CallTranscriptionResponse.md)
- [Bandwidth::CallTranscriptionTrackEnum](docs/CallTranscriptionTrackEnum.md)
- [Bandwidth::Callback](docs/Callback.md)
- [Bandwidth::CallbackMethodEnum](docs/CallbackMethodEnum.md)
- [Bandwidth::CardWidthEnum](docs/CardWidthEnum.md)
- [Bandwidth::CodeRequest](docs/CodeRequest.md)
- [Bandwidth::CompletedLookupStatusEnum](docs/CompletedLookupStatusEnum.md)
- [Bandwidth::Conference](docs/Conference.md)
- [Bandwidth::ConferenceCompletedCallback](docs/ConferenceCompletedCallback.md)
- [Bandwidth::ConferenceCreatedCallback](docs/ConferenceCreatedCallback.md)
- [Bandwidth::ConferenceMember](docs/ConferenceMember.md)
- [Bandwidth::ConferenceMemberExitCallback](docs/ConferenceMemberExitCallback.md)
- [Bandwidth::ConferenceMemberJoinCallback](docs/ConferenceMemberJoinCallback.md)
- [Bandwidth::ConferenceRecordingAvailableCallback](docs/ConferenceRecordingAvailableCallback.md)
- [Bandwidth::ConferenceRecordingMetadata](docs/ConferenceRecordingMetadata.md)
- [Bandwidth::ConferenceRedirectCallback](docs/ConferenceRedirectCallback.md)
- [Bandwidth::ConferenceStateEnum](docs/ConferenceStateEnum.md)
- [Bandwidth::Contact](docs/Contact.md)
- [Bandwidth::CreateAsyncBulkLookupResponse](docs/CreateAsyncBulkLookupResponse.md)
- [Bandwidth::CreateAsyncBulkLookupResponseData](docs/CreateAsyncBulkLookupResponseData.md)
- [Bandwidth::CreateCall](docs/CreateCall.md)
- [Bandwidth::CreateCallResponse](docs/CreateCallResponse.md)
- [Bandwidth::CreateMessageRequestError](docs/CreateMessageRequestError.md)
- [Bandwidth::CreateMultiChannelMessageResponse](docs/CreateMultiChannelMessageResponse.md)
- [Bandwidth::CreateSyncLookupResponse](docs/CreateSyncLookupResponse.md)
- [Bandwidth::CreateSyncLookupResponseData](docs/CreateSyncLookupResponseData.md)
- [Bandwidth::DeactivationEventEnum](docs/DeactivationEventEnum.md)
- [Bandwidth::DisconnectCallback](docs/DisconnectCallback.md)
- [Bandwidth::Diversion](docs/Diversion.md)
- [Bandwidth::DtmfCallback](docs/DtmfCallback.md)
- [Bandwidth::Error](docs/Error.md)
- [Bandwidth::ErrorObject](docs/ErrorObject.md)
- [Bandwidth::ErrorSource](docs/ErrorSource.md)
- [Bandwidth::FailureWebhook](docs/FailureWebhook.md)
- [Bandwidth::FieldError](docs/FieldError.md)
- [Bandwidth::FileFormatEnum](docs/FileFormatEnum.md)
- [Bandwidth::GatherCallback](docs/GatherCallback.md)
- [Bandwidth::GetAsyncBulkLookupResponse](docs/GetAsyncBulkLookupResponse.md)
- [Bandwidth::GetAsyncBulkLookupResponseData](docs/GetAsyncBulkLookupResponseData.md)
- [Bandwidth::InProgressLookupStatusEnum](docs/InProgressLookupStatusEnum.md)
- [Bandwidth::InboundCallback](docs/InboundCallback.md)
- [Bandwidth::InboundCallbackMessage](docs/InboundCallbackMessage.md)
- [Bandwidth::InboundCallbackTypeEnum](docs/InboundCallbackTypeEnum.md)
- [Bandwidth::InitiateCallback](docs/InitiateCallback.md)
- [Bandwidth::LatestMessageDeliveryStatusEnum](docs/LatestMessageDeliveryStatusEnum.md)
- [Bandwidth::LineTypeEnum](docs/LineTypeEnum.md)
- [Bandwidth::Link](docs/Link.md)
- [Bandwidth::LinkSchema](docs/LinkSchema.md)
- [Bandwidth::LinksObject](docs/LinksObject.md)
- [Bandwidth::ListMessageDirectionEnum](docs/ListMessageDirectionEnum.md)
- [Bandwidth::ListMessageItem](docs/ListMessageItem.md)
- [Bandwidth::LookupErrorResponse](docs/LookupErrorResponse.md)
- [Bandwidth::LookupErrorSchema](docs/LookupErrorSchema.md)
- [Bandwidth::LookupErrorSchemaMeta](docs/LookupErrorSchemaMeta.md)
- [Bandwidth::LookupResult](docs/LookupResult.md)
- [Bandwidth::MachineDetectionCompleteCallback](docs/MachineDetectionCompleteCallback.md)
- [Bandwidth::MachineDetectionConfiguration](docs/MachineDetectionConfiguration.md)
- [Bandwidth::MachineDetectionModeEnum](docs/MachineDetectionModeEnum.md)
- [Bandwidth::MachineDetectionResult](docs/MachineDetectionResult.md)
- [Bandwidth::Media](docs/Media.md)
- [Bandwidth::Message](docs/Message.md)
- [Bandwidth::MessageDirectionEnum](docs/MessageDirectionEnum.md)
- [Bandwidth::MessageRequest](docs/MessageRequest.md)
- [Bandwidth::MessageStatusEnum](docs/MessageStatusEnum.md)
- [Bandwidth::MessageTypeEnum](docs/MessageTypeEnum.md)
- [Bandwidth::MessagesList](docs/MessagesList.md)
- [Bandwidth::MessagingCodeResponse](docs/MessagingCodeResponse.md)
- [Bandwidth::MessagingRequestError](docs/MessagingRequestError.md)
- [Bandwidth::MfaForbiddenRequestError](docs/MfaForbiddenRequestError.md)
- [Bandwidth::MfaRequestError](docs/MfaRequestError.md)
- [Bandwidth::MfaUnauthorizedRequestError](docs/MfaUnauthorizedRequestError.md)
- [Bandwidth::MmsMessageContent](docs/MmsMessageContent.md)
- [Bandwidth::MmsMessageContentFile](docs/MmsMessageContentFile.md)
- [Bandwidth::MultiChannelAction](docs/MultiChannelAction.md)
- [Bandwidth::MultiChannelActionCalendarEvent](docs/MultiChannelActionCalendarEvent.md)
- [Bandwidth::MultiChannelChannelListMMSObject](docs/MultiChannelChannelListMMSObject.md)
- [Bandwidth::MultiChannelChannelListMMSResponseObject](docs/MultiChannelChannelListMMSResponseObject.md)
- [Bandwidth::MultiChannelChannelListObjectBase](docs/MultiChannelChannelListObjectBase.md)
- [Bandwidth::MultiChannelChannelListOwnerObject](docs/MultiChannelChannelListOwnerObject.md)
- [Bandwidth::MultiChannelChannelListRBMObject](docs/MultiChannelChannelListRBMObject.md)
- [Bandwidth::MultiChannelChannelListRBMObjectAllOfContent](docs/MultiChannelChannelListRBMObjectAllOfContent.md)
- [Bandwidth::MultiChannelChannelListRBMResponseObject](docs/MultiChannelChannelListRBMResponseObject.md)
- [Bandwidth::MultiChannelChannelListRequestObject](docs/MultiChannelChannelListRequestObject.md)
- [Bandwidth::MultiChannelChannelListResponseObject](docs/MultiChannelChannelListResponseObject.md)
- [Bandwidth::MultiChannelChannelListSMSObject](docs/MultiChannelChannelListSMSObject.md)
- [Bandwidth::MultiChannelChannelListSMSResponseObject](docs/MultiChannelChannelListSMSResponseObject.md)
- [Bandwidth::MultiChannelError](docs/MultiChannelError.md)
- [Bandwidth::MultiChannelMessageChannelEnum](docs/MultiChannelMessageChannelEnum.md)
- [Bandwidth::MultiChannelMessageContent](docs/MultiChannelMessageContent.md)
- [Bandwidth::MultiChannelMessageRequest](docs/MultiChannelMessageRequest.md)
- [Bandwidth::MultiChannelMessageResponseData](docs/MultiChannelMessageResponseData.md)
- [Bandwidth::OptInWorkflow](docs/OptInWorkflow.md)
- [Bandwidth::PageInfo](docs/PageInfo.md)
- [Bandwidth::PriorityEnum](docs/PriorityEnum.md)
- [Bandwidth::ProductTypeEnum](docs/ProductTypeEnum.md)
- [Bandwidth::RbmActionBase](docs/RbmActionBase.md)
- [Bandwidth::RbmActionDial](docs/RbmActionDial.md)
- [Bandwidth::RbmActionOpenUrl](docs/RbmActionOpenUrl.md)
- [Bandwidth::RbmActionTypeEnum](docs/RbmActionTypeEnum.md)
- [Bandwidth::RbmActionViewLocation](docs/RbmActionViewLocation.md)
- [Bandwidth::RbmCardContent](docs/RbmCardContent.md)
- [Bandwidth::RbmCardContentMedia](docs/RbmCardContentMedia.md)
- [Bandwidth::RbmLocationResponse](docs/RbmLocationResponse.md)
- [Bandwidth::RbmMediaHeightEnum](docs/RbmMediaHeightEnum.md)
- [Bandwidth::RbmMessageCarouselCard](docs/RbmMessageCarouselCard.md)
- [Bandwidth::RbmMessageContentFile](docs/RbmMessageContentFile.md)
- [Bandwidth::RbmMessageContentRichCard](docs/RbmMessageContentRichCard.md)
- [Bandwidth::RbmMessageContentText](docs/RbmMessageContentText.md)
- [Bandwidth::RbmMessageMedia](docs/RbmMessageMedia.md)
- [Bandwidth::RbmOpenUrlEnum](docs/RbmOpenUrlEnum.md)
- [Bandwidth::RbmStandaloneCard](docs/RbmStandaloneCard.md)
- [Bandwidth::RbmSuggestionResponse](docs/RbmSuggestionResponse.md)
- [Bandwidth::RbmWebViewEnum](docs/RbmWebViewEnum.md)
- [Bandwidth::RecordingAvailableCallback](docs/RecordingAvailableCallback.md)
- [Bandwidth::RecordingCompleteCallback](docs/RecordingCompleteCallback.md)
- [Bandwidth::RecordingStateEnum](docs/RecordingStateEnum.md)
- [Bandwidth::RecordingTranscriptionMetadata](docs/RecordingTranscriptionMetadata.md)
- [Bandwidth::RecordingTranscriptions](docs/RecordingTranscriptions.md)
- [Bandwidth::RedirectCallback](docs/RedirectCallback.md)
- [Bandwidth::RedirectMethodEnum](docs/RedirectMethodEnum.md)
- [Bandwidth::SmsMessageContent](docs/SmsMessageContent.md)
- [Bandwidth::StandaloneCardOrientationEnum](docs/StandaloneCardOrientationEnum.md)
- [Bandwidth::StatusCallback](docs/StatusCallback.md)
- [Bandwidth::StatusCallbackMessage](docs/StatusCallbackMessage.md)
- [Bandwidth::StatusCallbackTypeEnum](docs/StatusCallbackTypeEnum.md)
- [Bandwidth::StirShaken](docs/StirShaken.md)
- [Bandwidth::SyncLookupRequest](docs/SyncLookupRequest.md)
- [Bandwidth::TelephoneNumber](docs/TelephoneNumber.md)
- [Bandwidth::TfvBasicAuthentication](docs/TfvBasicAuthentication.md)
- [Bandwidth::TfvCallbackStatusEnum](docs/TfvCallbackStatusEnum.md)
- [Bandwidth::TfvError](docs/TfvError.md)
- [Bandwidth::TfvStatus](docs/TfvStatus.md)
- [Bandwidth::TfvStatusEnum](docs/TfvStatusEnum.md)
- [Bandwidth::TfvSubmissionInfo](docs/TfvSubmissionInfo.md)
- [Bandwidth::TfvSubmissionWrapper](docs/TfvSubmissionWrapper.md)
- [Bandwidth::ThumbnailAlignmentEnum](docs/ThumbnailAlignmentEnum.md)
- [Bandwidth::TranscribeRecording](docs/TranscribeRecording.md)
- [Bandwidth::Transcription](docs/Transcription.md)
- [Bandwidth::TranscriptionAvailableCallback](docs/TranscriptionAvailableCallback.md)
- [Bandwidth::TransferAnswerCallback](docs/TransferAnswerCallback.md)
- [Bandwidth::TransferCompleteCallback](docs/TransferCompleteCallback.md)
- [Bandwidth::TransferDisconnectCallback](docs/TransferDisconnectCallback.md)
- [Bandwidth::UpdateCall](docs/UpdateCall.md)
- [Bandwidth::UpdateCallRecording](docs/UpdateCallRecording.md)
- [Bandwidth::UpdateConference](docs/UpdateConference.md)
- [Bandwidth::UpdateConferenceMember](docs/UpdateConferenceMember.md)
- [Bandwidth::VerificationDenialWebhook](docs/VerificationDenialWebhook.md)
- [Bandwidth::VerificationRequest](docs/VerificationRequest.md)
- [Bandwidth::VerificationUpdateRequest](docs/VerificationUpdateRequest.md)
- [Bandwidth::VerificationWebhook](docs/VerificationWebhook.md)
- [Bandwidth::VerifyCodeRequest](docs/VerifyCodeRequest.md)
- [Bandwidth::VerifyCodeResponse](docs/VerifyCodeResponse.md)
- [Bandwidth::VoiceApiError](docs/VoiceApiError.md)
- [Bandwidth::VoiceCodeResponse](docs/VoiceCodeResponse.md)
- [Bandwidth::WebhookSubscription](docs/WebhookSubscription.md)
- [Bandwidth::WebhookSubscriptionBasicAuthentication](docs/WebhookSubscriptionBasicAuthentication.md)
- [Bandwidth::WebhookSubscriptionRequestSchema](docs/WebhookSubscriptionRequestSchema.md)
- [Bandwidth::WebhookSubscriptionTypeEnum](docs/WebhookSubscriptionTypeEnum.md)
- [Bandwidth::WebhookSubscriptionsListBody](docs/WebhookSubscriptionsListBody.md)
## Documentation for Authorization
Authentication schemes defined for the API:
### Basic
- **Type**: HTTP basic authentication
### OAuth2
- **Type**: OAuth
- **Flow**: application
- **Authorization URL**:
- **Scopes**: N/A