{"id":20364347,"url":"https://github.com/bandwidth/python-sdk","last_synced_at":"2026-02-24T23:10:27.883Z","repository":{"id":39853386,"uuid":"212865477","full_name":"Bandwidth/python-sdk","owner":"Bandwidth","description":"Bandwidth Python SDK","archived":false,"fork":false,"pushed_at":"2026-02-12T15:40:56.000Z","size":2250,"stargazers_count":18,"open_issues_count":2,"forks_count":9,"subscribers_count":35,"default_branch":"main","last_synced_at":"2026-02-12T23:58:40.137Z","etag":null,"topics":["sdk","sdlc-enforced"],"latest_commit_sha":null,"homepage":"https://dev.bandwidth.com","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Bandwidth.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2019-10-04T17:09:24.000Z","updated_at":"2026-02-03T17:18:39.000Z","dependencies_parsed_at":"2023-02-14T02:15:47.204Z","dependency_job_id":"8490e1ad-26db-4e72-8ba1-ea4d10425e6b","html_url":"https://github.com/Bandwidth/python-sdk","commit_stats":null,"previous_names":[],"tags_count":65,"template":false,"template_full_name":null,"purl":"pkg:github/Bandwidth/python-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bandwidth%2Fpython-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bandwidth%2Fpython-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bandwidth%2Fpython-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bandwidth%2Fpython-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bandwidth","download_url":"https://codeload.github.com/Bandwidth/python-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bandwidth%2Fpython-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29804359,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-24T22:43:48.403Z","status":"ssl_error","status_checked_at":"2026-02-24T22:43:18.536Z","response_time":75,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["sdk","sdlc-enforced"],"created_at":"2024-11-15T00:11:22.765Z","updated_at":"2026-02-24T23:10:27.878Z","avatar_url":"https://github.com/Bandwidth.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bandwidth_sdk\nBandwidth's Communication APIs\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 1.0.0\n- Package version: 1.0.0\n- Generator version: 7.17.0\n- Build package: org.openapitools.codegen.languages.PythonClientCodegen\nFor more information, please visit [https://dev.bandwidth.com](https://dev.bandwidth.com)\n\n## Requirements.\n\nPython 3.9+\n\n## Installation \u0026 Usage\n### pip install\n\nIf the python package is hosted on a repository, you can install directly using:\n\n```sh\npip install git+https://github.com/bandwidth/python-sdk.git\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/bandwidth/python-sdk.git`)\n\nThen import the package:\n```python\nimport bandwidth\n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n(or `sudo python setup.py install` to install the package for all users)\n\nThen import the package:\n```python\nimport bandwidth\n```\n\n### Tests\n\nExecute `pytest` to run the tests.\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\n\nimport bandwidth\nfrom bandwidth.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to http://localhost\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = bandwidth.Configuration(\n    host = \"http://localhost\"\n)\n\n# The client must configure the authentication and authorization parameters\n# in accordance with the API server security policy.\n# Examples for each auth method are provided below, use the example that\n# satisfies your auth use case.\n\n# Configure HTTP basic authorization: Basic\nconfiguration = bandwidth.Configuration(\n    username = os.environ[\"USERNAME\"],\n    password = os.environ[\"PASSWORD\"]\n)\n\n# Configure your client ID and secret for OAuth\nconfiguration = bandwidth.Configuration(\n    client_id = os.environ[\"CLIENT_ID\"],\n    client_secret = os.environ[\"CLIENT_SECRET\"]\n)\n\n\n# Enter a context with an instance of the API client\nwith bandwidth.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = bandwidth.CallsApi(api_client)\n    account_id = '9900000' # str | Your Bandwidth Account ID.\n    create_call = bandwidth.CreateCall() # CreateCall | JSON object containing information to create an outbound call\n\n    try:\n        # Create Call\n        api_response = api_instance.create_call(account_id, create_call)\n        print(\"The response of CallsApi-\u003ecreate_call:\\n\")\n        pprint(api_response)\n    except ApiException as e:\n        print(\"Exception when calling CallsApi-\u003ecreate_call: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *http://localhost*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*CallsApi* | [**create_call**](docs/CallsApi.md#create_call) | **POST** /accounts/{accountId}/calls | Create Call\n*CallsApi* | [**get_call_state**](docs/CallsApi.md#get_call_state) | **GET** /accounts/{accountId}/calls/{callId} | Get Call State Information\n*CallsApi* | [**list_calls**](docs/CallsApi.md#list_calls) | **GET** /accounts/{accountId}/calls | Get Calls\n*CallsApi* | [**update_call**](docs/CallsApi.md#update_call) | **POST** /accounts/{accountId}/calls/{callId} | Update Call\n*CallsApi* | [**update_call_bxml**](docs/CallsApi.md#update_call_bxml) | **PUT** /accounts/{accountId}/calls/{callId}/bxml | Update Call BXML\n*ConferencesApi* | [**download_conference_recording**](docs/ConferencesApi.md#download_conference_recording) | **GET** /accounts/{accountId}/conferences/{conferenceId}/recordings/{recordingId}/media | Download Conference Recording\n*ConferencesApi* | [**get_conference**](docs/ConferencesApi.md#get_conference) | **GET** /accounts/{accountId}/conferences/{conferenceId} | Get Conference Information\n*ConferencesApi* | [**get_conference_member**](docs/ConferencesApi.md#get_conference_member) | **GET** /accounts/{accountId}/conferences/{conferenceId}/members/{memberId} | Get Conference Member\n*ConferencesApi* | [**get_conference_recording**](docs/ConferencesApi.md#get_conference_recording) | **GET** /accounts/{accountId}/conferences/{conferenceId}/recordings/{recordingId} | Get Conference Recording Information\n*ConferencesApi* | [**list_conference_recordings**](docs/ConferencesApi.md#list_conference_recordings) | **GET** /accounts/{accountId}/conferences/{conferenceId}/recordings | Get Conference Recordings\n*ConferencesApi* | [**list_conferences**](docs/ConferencesApi.md#list_conferences) | **GET** /accounts/{accountId}/conferences | Get Conferences\n*ConferencesApi* | [**update_conference**](docs/ConferencesApi.md#update_conference) | **POST** /accounts/{accountId}/conferences/{conferenceId} | Update Conference\n*ConferencesApi* | [**update_conference_bxml**](docs/ConferencesApi.md#update_conference_bxml) | **PUT** /accounts/{accountId}/conferences/{conferenceId}/bxml | Update Conference BXML\n*ConferencesApi* | [**update_conference_member**](docs/ConferencesApi.md#update_conference_member) | **PUT** /accounts/{accountId}/conferences/{conferenceId}/members/{memberId} | Update Conference Member\n*MFAApi* | [**generate_messaging_code**](docs/MFAApi.md#generate_messaging_code) | **POST** /accounts/{accountId}/code/messaging | Messaging Authentication Code\n*MFAApi* | [**generate_voice_code**](docs/MFAApi.md#generate_voice_code) | **POST** /accounts/{accountId}/code/voice | Voice Authentication Code\n*MFAApi* | [**verify_code**](docs/MFAApi.md#verify_code) | **POST** /accounts/{accountId}/code/verify | Verify Authentication Code\n*MediaApi* | [**delete_media**](docs/MediaApi.md#delete_media) | **DELETE** /users/{accountId}/media/{mediaId} | Delete Media\n*MediaApi* | [**get_media**](docs/MediaApi.md#get_media) | **GET** /users/{accountId}/media/{mediaId} | Get Media\n*MediaApi* | [**list_media**](docs/MediaApi.md#list_media) | **GET** /users/{accountId}/media | List Media\n*MediaApi* | [**upload_media**](docs/MediaApi.md#upload_media) | **PUT** /users/{accountId}/media/{mediaId} | Upload Media\n*MessagesApi* | [**create_message**](docs/MessagesApi.md#create_message) | **POST** /users/{accountId}/messages | Create Message\n*MessagesApi* | [**list_messages**](docs/MessagesApi.md#list_messages) | **GET** /users/{accountId}/messages | List Messages\n*MultiChannelApi* | [**create_multi_channel_message**](docs/MultiChannelApi.md#create_multi_channel_message) | **POST** /users/{accountId}/messages/multiChannel | Create Multi-Channel Message\n*PhoneNumberLookupApi* | [**create_async_bulk_lookup**](docs/PhoneNumberLookupApi.md#create_async_bulk_lookup) | **POST** /accounts/{accountId}/phoneNumberLookup/bulk | Create Asynchronous Bulk Number Lookup\n*PhoneNumberLookupApi* | [**create_sync_lookup**](docs/PhoneNumberLookupApi.md#create_sync_lookup) | **POST** /accounts/{accountId}/phoneNumberLookup | Create Synchronous Number Lookup\n*PhoneNumberLookupApi* | [**get_async_bulk_lookup**](docs/PhoneNumberLookupApi.md#get_async_bulk_lookup) | **GET** /accounts/{accountId}/phoneNumberLookup/bulk/{requestId} | Get Asynchronous Bulk Number Lookup\n*RecordingsApi* | [**delete_recording**](docs/RecordingsApi.md#delete_recording) | **DELETE** /accounts/{accountId}/calls/{callId}/recordings/{recordingId} | Delete Recording\n*RecordingsApi* | [**delete_recording_media**](docs/RecordingsApi.md#delete_recording_media) | **DELETE** /accounts/{accountId}/calls/{callId}/recordings/{recordingId}/media | Delete Recording Media\n*RecordingsApi* | [**delete_recording_transcription**](docs/RecordingsApi.md#delete_recording_transcription) | **DELETE** /accounts/{accountId}/calls/{callId}/recordings/{recordingId}/transcription | Delete Transcription\n*RecordingsApi* | [**download_call_recording**](docs/RecordingsApi.md#download_call_recording) | **GET** /accounts/{accountId}/calls/{callId}/recordings/{recordingId}/media | Download Recording\n*RecordingsApi* | [**get_call_recording**](docs/RecordingsApi.md#get_call_recording) | **GET** /accounts/{accountId}/calls/{callId}/recordings/{recordingId} | Get Call Recording\n*RecordingsApi* | [**get_recording_transcription**](docs/RecordingsApi.md#get_recording_transcription) | **GET** /accounts/{accountId}/calls/{callId}/recordings/{recordingId}/transcription | Get Transcription\n*RecordingsApi* | [**list_account_call_recordings**](docs/RecordingsApi.md#list_account_call_recordings) | **GET** /accounts/{accountId}/recordings | Get Call Recordings\n*RecordingsApi* | [**list_call_recordings**](docs/RecordingsApi.md#list_call_recordings) | **GET** /accounts/{accountId}/calls/{callId}/recordings | List Call Recordings\n*RecordingsApi* | [**transcribe_call_recording**](docs/RecordingsApi.md#transcribe_call_recording) | **POST** /accounts/{accountId}/calls/{callId}/recordings/{recordingId}/transcription | Create Transcription Request\n*RecordingsApi* | [**update_call_recording_state**](docs/RecordingsApi.md#update_call_recording_state) | **PUT** /accounts/{accountId}/calls/{callId}/recording | Update Recording\n*StatisticsApi* | [**get_statistics**](docs/StatisticsApi.md#get_statistics) | **GET** /accounts/{accountId}/statistics | Get Account Statistics\n*TollFreeVerificationApi* | [**create_webhook_subscription**](docs/TollFreeVerificationApi.md#create_webhook_subscription) | **POST** /accounts/{accountId}/tollFreeVerification/webhooks/subscriptions | Create Webhook Subscription\n*TollFreeVerificationApi* | [**delete_verification_request**](docs/TollFreeVerificationApi.md#delete_verification_request) | **DELETE** /accounts/{accountId}/phoneNumbers/{phoneNumber}/tollFreeVerification | Delete a Toll-Free Verification Submission\n*TollFreeVerificationApi* | [**delete_webhook_subscription**](docs/TollFreeVerificationApi.md#delete_webhook_subscription) | **DELETE** /accounts/{accountId}/tollFreeVerification/webhooks/subscriptions/{id} | Delete Webhook Subscription\n*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\n*TollFreeVerificationApi* | [**list_toll_free_use_cases**](docs/TollFreeVerificationApi.md#list_toll_free_use_cases) | **GET** /tollFreeVerification/useCases | List Toll-Free Use Cases\n*TollFreeVerificationApi* | [**list_webhook_subscriptions**](docs/TollFreeVerificationApi.md#list_webhook_subscriptions) | **GET** /accounts/{accountId}/tollFreeVerification/webhooks/subscriptions | List Webhook Subscriptions\n*TollFreeVerificationApi* | [**request_toll_free_verification**](docs/TollFreeVerificationApi.md#request_toll_free_verification) | **POST** /accounts/{accountId}/tollFreeVerification | Request Toll-Free Verification\n*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\n*TollFreeVerificationApi* | [**update_webhook_subscription**](docs/TollFreeVerificationApi.md#update_webhook_subscription) | **PUT** /accounts/{accountId}/tollFreeVerification/webhooks/subscriptions/{id} | Update Webhook Subscription\n*TranscriptionsApi* | [**delete_real_time_transcription**](docs/TranscriptionsApi.md#delete_real_time_transcription) | **DELETE** /accounts/{accountId}/calls/{callId}/transcriptions/{transcriptionId} | Delete Real-time Transcription\n*TranscriptionsApi* | [**get_real_time_transcription**](docs/TranscriptionsApi.md#get_real_time_transcription) | **GET** /accounts/{accountId}/calls/{callId}/transcriptions/{transcriptionId} | Get Real-time Transcription\n*TranscriptionsApi* | [**list_real_time_transcriptions**](docs/TranscriptionsApi.md#list_real_time_transcriptions) | **GET** /accounts/{accountId}/calls/{callId}/transcriptions | List Real-time Transcriptions\n\n\n## Documentation For Models\n\n - [AccountStatistics](docs/AccountStatistics.md)\n - [AdditionalDenialReason](docs/AdditionalDenialReason.md)\n - [Address](docs/Address.md)\n - [AnswerCallback](docs/AnswerCallback.md)\n - [AsyncLookupRequest](docs/AsyncLookupRequest.md)\n - [BlockedWebhook](docs/BlockedWebhook.md)\n - [BridgeCompleteCallback](docs/BridgeCompleteCallback.md)\n - [BridgeTargetCompleteCallback](docs/BridgeTargetCompleteCallback.md)\n - [BusinessEntityTypeEnum](docs/BusinessEntityTypeEnum.md)\n - [BusinessRegistrationIssuingCountryEnum](docs/BusinessRegistrationIssuingCountryEnum.md)\n - [BusinessRegistrationTypeEnum](docs/BusinessRegistrationTypeEnum.md)\n - [CallDirectionEnum](docs/CallDirectionEnum.md)\n - [CallRecordingMetadata](docs/CallRecordingMetadata.md)\n - [CallState](docs/CallState.md)\n - [CallStateEnum](docs/CallStateEnum.md)\n - [CallTranscription](docs/CallTranscription.md)\n - [CallTranscriptionDetectedLanguageEnum](docs/CallTranscriptionDetectedLanguageEnum.md)\n - [CallTranscriptionMetadata](docs/CallTranscriptionMetadata.md)\n - [CallTranscriptionResponse](docs/CallTranscriptionResponse.md)\n - [CallTranscriptionTrackEnum](docs/CallTranscriptionTrackEnum.md)\n - [Callback](docs/Callback.md)\n - [CallbackMethodEnum](docs/CallbackMethodEnum.md)\n - [CardWidthEnum](docs/CardWidthEnum.md)\n - [CodeRequest](docs/CodeRequest.md)\n - [CompletedLookupStatusEnum](docs/CompletedLookupStatusEnum.md)\n - [Conference](docs/Conference.md)\n - [ConferenceCompletedCallback](docs/ConferenceCompletedCallback.md)\n - [ConferenceCreatedCallback](docs/ConferenceCreatedCallback.md)\n - [ConferenceMember](docs/ConferenceMember.md)\n - [ConferenceMemberExitCallback](docs/ConferenceMemberExitCallback.md)\n - [ConferenceMemberJoinCallback](docs/ConferenceMemberJoinCallback.md)\n - [ConferenceRecordingAvailableCallback](docs/ConferenceRecordingAvailableCallback.md)\n - [ConferenceRecordingMetadata](docs/ConferenceRecordingMetadata.md)\n - [ConferenceRedirectCallback](docs/ConferenceRedirectCallback.md)\n - [ConferenceStateEnum](docs/ConferenceStateEnum.md)\n - [Contact](docs/Contact.md)\n - [CreateAsyncBulkLookupResponse](docs/CreateAsyncBulkLookupResponse.md)\n - [CreateAsyncBulkLookupResponseData](docs/CreateAsyncBulkLookupResponseData.md)\n - [CreateCall](docs/CreateCall.md)\n - [CreateCallResponse](docs/CreateCallResponse.md)\n - [CreateMessageRequestError](docs/CreateMessageRequestError.md)\n - [CreateMultiChannelMessageResponse](docs/CreateMultiChannelMessageResponse.md)\n - [CreateSyncLookupResponse](docs/CreateSyncLookupResponse.md)\n - [CreateSyncLookupResponseData](docs/CreateSyncLookupResponseData.md)\n - [DeactivationEventEnum](docs/DeactivationEventEnum.md)\n - [DisconnectCallback](docs/DisconnectCallback.md)\n - [Diversion](docs/Diversion.md)\n - [DtmfCallback](docs/DtmfCallback.md)\n - [Error](docs/Error.md)\n - [ErrorObject](docs/ErrorObject.md)\n - [ErrorSource](docs/ErrorSource.md)\n - [FailureWebhook](docs/FailureWebhook.md)\n - [FieldError](docs/FieldError.md)\n - [FileFormatEnum](docs/FileFormatEnum.md)\n - [GatherCallback](docs/GatherCallback.md)\n - [GetAsyncBulkLookupResponse](docs/GetAsyncBulkLookupResponse.md)\n - [GetAsyncBulkLookupResponseData](docs/GetAsyncBulkLookupResponseData.md)\n - [InProgressLookupStatusEnum](docs/InProgressLookupStatusEnum.md)\n - [InboundCallback](docs/InboundCallback.md)\n - [InboundCallbackMessage](docs/InboundCallbackMessage.md)\n - [InboundCallbackTypeEnum](docs/InboundCallbackTypeEnum.md)\n - [InitiateCallback](docs/InitiateCallback.md)\n - [LatestMessageDeliveryStatusEnum](docs/LatestMessageDeliveryStatusEnum.md)\n - [LineTypeEnum](docs/LineTypeEnum.md)\n - [Link](docs/Link.md)\n - [LinkSchema](docs/LinkSchema.md)\n - [LinksObject](docs/LinksObject.md)\n - [ListMessageDirectionEnum](docs/ListMessageDirectionEnum.md)\n - [ListMessageItem](docs/ListMessageItem.md)\n - [LookupErrorResponse](docs/LookupErrorResponse.md)\n - [LookupErrorSchema](docs/LookupErrorSchema.md)\n - [LookupErrorSchemaMeta](docs/LookupErrorSchemaMeta.md)\n - [LookupResult](docs/LookupResult.md)\n - [MachineDetectionCompleteCallback](docs/MachineDetectionCompleteCallback.md)\n - [MachineDetectionConfiguration](docs/MachineDetectionConfiguration.md)\n - [MachineDetectionModeEnum](docs/MachineDetectionModeEnum.md)\n - [MachineDetectionResult](docs/MachineDetectionResult.md)\n - [Media](docs/Media.md)\n - [Message](docs/Message.md)\n - [MessageDirectionEnum](docs/MessageDirectionEnum.md)\n - [MessageRequest](docs/MessageRequest.md)\n - [MessageStatusEnum](docs/MessageStatusEnum.md)\n - [MessageTypeEnum](docs/MessageTypeEnum.md)\n - [MessagesList](docs/MessagesList.md)\n - [MessagingCodeResponse](docs/MessagingCodeResponse.md)\n - [MessagingRequestError](docs/MessagingRequestError.md)\n - [MfaForbiddenRequestError](docs/MfaForbiddenRequestError.md)\n - [MfaRequestError](docs/MfaRequestError.md)\n - [MfaUnauthorizedRequestError](docs/MfaUnauthorizedRequestError.md)\n - [MmsMessageContent](docs/MmsMessageContent.md)\n - [MmsMessageContentFile](docs/MmsMessageContentFile.md)\n - [MultiChannelAction](docs/MultiChannelAction.md)\n - [MultiChannelActionCalendarEvent](docs/MultiChannelActionCalendarEvent.md)\n - [MultiChannelChannelListMMSObject](docs/MultiChannelChannelListMMSObject.md)\n - [MultiChannelChannelListMMSResponseObject](docs/MultiChannelChannelListMMSResponseObject.md)\n - [MultiChannelChannelListObjectBase](docs/MultiChannelChannelListObjectBase.md)\n - [MultiChannelChannelListOwnerObject](docs/MultiChannelChannelListOwnerObject.md)\n - [MultiChannelChannelListRBMObject](docs/MultiChannelChannelListRBMObject.md)\n - [MultiChannelChannelListRBMObjectAllOfContent](docs/MultiChannelChannelListRBMObjectAllOfContent.md)\n - [MultiChannelChannelListRBMResponseObject](docs/MultiChannelChannelListRBMResponseObject.md)\n - [MultiChannelChannelListRequestObject](docs/MultiChannelChannelListRequestObject.md)\n - [MultiChannelChannelListResponseObject](docs/MultiChannelChannelListResponseObject.md)\n - [MultiChannelChannelListSMSObject](docs/MultiChannelChannelListSMSObject.md)\n - [MultiChannelChannelListSMSResponseObject](docs/MultiChannelChannelListSMSResponseObject.md)\n - [MultiChannelError](docs/MultiChannelError.md)\n - [MultiChannelMessageChannelEnum](docs/MultiChannelMessageChannelEnum.md)\n - [MultiChannelMessageContent](docs/MultiChannelMessageContent.md)\n - [MultiChannelMessageRequest](docs/MultiChannelMessageRequest.md)\n - [MultiChannelMessageResponseData](docs/MultiChannelMessageResponseData.md)\n - [OptInWorkflow](docs/OptInWorkflow.md)\n - [PageInfo](docs/PageInfo.md)\n - [PriorityEnum](docs/PriorityEnum.md)\n - [ProductTypeEnum](docs/ProductTypeEnum.md)\n - [RbmActionBase](docs/RbmActionBase.md)\n - [RbmActionDial](docs/RbmActionDial.md)\n - [RbmActionOpenUrl](docs/RbmActionOpenUrl.md)\n - [RbmActionTypeEnum](docs/RbmActionTypeEnum.md)\n - [RbmActionViewLocation](docs/RbmActionViewLocation.md)\n - [RbmCardContent](docs/RbmCardContent.md)\n - [RbmCardContentMedia](docs/RbmCardContentMedia.md)\n - [RbmLocationResponse](docs/RbmLocationResponse.md)\n - [RbmMediaHeightEnum](docs/RbmMediaHeightEnum.md)\n - [RbmMessageCarouselCard](docs/RbmMessageCarouselCard.md)\n - [RbmMessageContentFile](docs/RbmMessageContentFile.md)\n - [RbmMessageContentRichCard](docs/RbmMessageContentRichCard.md)\n - [RbmMessageContentText](docs/RbmMessageContentText.md)\n - [RbmMessageMedia](docs/RbmMessageMedia.md)\n - [RbmOpenUrlEnum](docs/RbmOpenUrlEnum.md)\n - [RbmStandaloneCard](docs/RbmStandaloneCard.md)\n - [RbmSuggestionResponse](docs/RbmSuggestionResponse.md)\n - [RbmWebViewEnum](docs/RbmWebViewEnum.md)\n - [RecordingAvailableCallback](docs/RecordingAvailableCallback.md)\n - [RecordingCompleteCallback](docs/RecordingCompleteCallback.md)\n - [RecordingStateEnum](docs/RecordingStateEnum.md)\n - [RecordingTranscriptionMetadata](docs/RecordingTranscriptionMetadata.md)\n - [RecordingTranscriptions](docs/RecordingTranscriptions.md)\n - [RedirectCallback](docs/RedirectCallback.md)\n - [RedirectMethodEnum](docs/RedirectMethodEnum.md)\n - [SmsMessageContent](docs/SmsMessageContent.md)\n - [StandaloneCardOrientationEnum](docs/StandaloneCardOrientationEnum.md)\n - [StatusCallback](docs/StatusCallback.md)\n - [StatusCallbackMessage](docs/StatusCallbackMessage.md)\n - [StatusCallbackTypeEnum](docs/StatusCallbackTypeEnum.md)\n - [StirShaken](docs/StirShaken.md)\n - [SyncLookupRequest](docs/SyncLookupRequest.md)\n - [TelephoneNumber](docs/TelephoneNumber.md)\n - [TfvBasicAuthentication](docs/TfvBasicAuthentication.md)\n - [TfvCallbackStatusEnum](docs/TfvCallbackStatusEnum.md)\n - [TfvError](docs/TfvError.md)\n - [TfvStatus](docs/TfvStatus.md)\n - [TfvStatusEnum](docs/TfvStatusEnum.md)\n - [TfvSubmissionInfo](docs/TfvSubmissionInfo.md)\n - [TfvSubmissionWrapper](docs/TfvSubmissionWrapper.md)\n - [ThumbnailAlignmentEnum](docs/ThumbnailAlignmentEnum.md)\n - [TranscribeRecording](docs/TranscribeRecording.md)\n - [Transcription](docs/Transcription.md)\n - [TranscriptionAvailableCallback](docs/TranscriptionAvailableCallback.md)\n - [TransferAnswerCallback](docs/TransferAnswerCallback.md)\n - [TransferCompleteCallback](docs/TransferCompleteCallback.md)\n - [TransferDisconnectCallback](docs/TransferDisconnectCallback.md)\n - [UpdateCall](docs/UpdateCall.md)\n - [UpdateCallRecording](docs/UpdateCallRecording.md)\n - [UpdateConference](docs/UpdateConference.md)\n - [UpdateConferenceMember](docs/UpdateConferenceMember.md)\n - [VerificationDenialWebhook](docs/VerificationDenialWebhook.md)\n - [VerificationRequest](docs/VerificationRequest.md)\n - [VerificationUpdateRequest](docs/VerificationUpdateRequest.md)\n - [VerificationWebhook](docs/VerificationWebhook.md)\n - [VerifyCodeRequest](docs/VerifyCodeRequest.md)\n - [VerifyCodeResponse](docs/VerifyCodeResponse.md)\n - [VoiceApiError](docs/VoiceApiError.md)\n - [VoiceCodeResponse](docs/VoiceCodeResponse.md)\n - [WebhookSubscription](docs/WebhookSubscription.md)\n - [WebhookSubscriptionBasicAuthentication](docs/WebhookSubscriptionBasicAuthentication.md)\n - [WebhookSubscriptionRequestSchema](docs/WebhookSubscriptionRequestSchema.md)\n - [WebhookSubscriptionTypeEnum](docs/WebhookSubscriptionTypeEnum.md)\n - [WebhookSubscriptionsListBody](docs/WebhookSubscriptionsListBody.md)\n\n\n\u003ca id=\"documentation-for-authorization\"\u003e\u003c/a\u003e\n## Documentation For Authorization\n\n\nAuthentication schemes defined for the API:\n\u003ca id=\"Basic\"\u003e\u003c/a\u003e\n### Basic\n\n- **Type**: HTTP basic authentication\n\n\u003ca id=\"OAuth2\"\u003e\u003c/a\u003e\n### OAuth2\n\n- **Type**: OAuth\n- **Flow**: application\n- **Authorization URL**: \n- **Scopes**: N/A\n\n\n## Author\n\nletstalk@bandwidth.com\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbandwidth%2Fpython-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbandwidth%2Fpython-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbandwidth%2Fpython-sdk/lists"}