{"id":20364356,"url":"https://github.com/bandwidth/node-sdk","last_synced_at":"2026-04-07T22:01:18.219Z","repository":{"id":215128595,"uuid":"702563673","full_name":"Bandwidth/node-sdk","owner":"Bandwidth","description":"Bandwidth TypeScript Node SDK","archived":false,"fork":false,"pushed_at":"2026-04-02T21:21:18.000Z","size":1109,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":8,"default_branch":"main","last_synced_at":"2026-04-03T07:59:38.538Z","etag":null,"topics":["sdk","sdlc-enforced"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"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":null,"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":"2023-10-09T14:52:49.000Z","updated_at":"2026-03-31T20:23:48.000Z","dependencies_parsed_at":"2024-01-02T17:50:04.064Z","dependency_job_id":"2a0b14b9-065b-46f2-a767-28ba465c61d2","html_url":"https://github.com/Bandwidth/node-sdk","commit_stats":null,"previous_names":["bandwidth/node-sdk"],"tags_count":34,"template":false,"template_full_name":null,"purl":"pkg:github/Bandwidth/node-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bandwidth%2Fnode-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bandwidth%2Fnode-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bandwidth%2Fnode-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bandwidth%2Fnode-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bandwidth","download_url":"https://codeload.github.com/Bandwidth/node-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bandwidth%2Fnode-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31530647,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"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:24.315Z","updated_at":"2026-04-07T22:01:18.178Z","avatar_url":"https://github.com/Bandwidth.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## bandwidth-sdk\n\n[![Deploy](https://github.com/Bandwidth/node-sdk/actions/workflows/deploy.yml/badge.svg)](https://github.com/Bandwidth/node-sdk/actions/workflows/deploy.yml)\n\n|    **OS**    |  **Node**  |\n|:------------:|:----------:|\n| Windows 2022 | 18, 20, 22, 24 |\n| Windows 2025 | 18, 20, 22, 24 |\n| Ubuntu 22.04 | 18, 20, 22, 24 |\n| Ubuntu 24.04 | 18, 20, 22, 24 |\n\n#### Available on NPM\n```\nnpm install bandwidth-sdk\n```\n\n\n#### To Run Unit Tests Locally\n\n1. Install Prism\n```bash\nnpm install -g @stoplight/prism-cli\n```\n2. Start Prism Mock Server with the OpenAPI Spec\n```bash\nprism mock bandwidth.yml\n```\n3. Run Tests\n```bash\nnpm run test-unit\n```\n\n\nThis generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:\n\nEnvironment\n* Node.js\n* Webpack\n* Browserify\n\nLanguage level\n* ES5 - you must have a Promises/A+ library installed\n* ES6\n\nModule system\n* CommonJS\n* ES6 module system\n\nIt can be used in both TypeScript and JavaScript. In TypeScript, the definition will be automatically resolved via `package.json`. ([Reference](https://www.typescriptlang.org/docs/handbook/declaration-files/consumption.html))\n\n### Building\n\nTo build and compile the typescript sources to javascript use:\n```\nnpm install\nnpm run build\n```\n\n### Publishing\n\nFirst build the package then run `npm publish`\n\n### Consuming\n\nnavigate to the folder of your consuming project and run one of the following commands.\n\n_published:_\n\n```\nnpm install bandwidth-sdk --save\n```\n\n_unPublished (not recommended):_\n\n```\nnpm install PATH_TO_GENERATED_PACKAGE --save\n```\n\n### Getting Started\n\nThe following is a simple example of how to use this module:\n\n```javascript\nimport { CallsApi, Configuration } from 'bandwidth-sdk';\n\nconst config = new Configuration({\n    clientId: BW_CLIENT_ID,\n    clientSecret: BW_CLIENT_SECRET\n});\nconst callsApi = new CallsApi(config);\n\nconst body = {\n    applicationId: BW_VOICE_APPLICATION_ID,\n    to: TO_NUMBER,\n    from: BW_NUMBER\n};\n\nawait callsApi.createCall(BW_ACCOUNT_ID, body);\n```\n\nMore samples can be found in the [Bandwidth Samples](https://github.com/orgs/Bandwidth-Samples/repositories?q=lang%3Ajavascript\u0026type=all) GitHub Organization.\n\n### Documentation for API Endpoints\n\nAll URIs are relative to *http://localhost*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*CallsApi* | [**createCall**](docs/CallsApi.md#createcall) | **POST** /accounts/{accountId}/calls | Create Call\n*CallsApi* | [**getCallState**](docs/CallsApi.md#getcallstate) | **GET** /accounts/{accountId}/calls/{callId} | Get Call State Information\n*CallsApi* | [**listCalls**](docs/CallsApi.md#listcalls) | **GET** /accounts/{accountId}/calls | Get Calls\n*CallsApi* | [**updateCall**](docs/CallsApi.md#updatecall) | **POST** /accounts/{accountId}/calls/{callId} | Update Call\n*CallsApi* | [**updateCallBxml**](docs/CallsApi.md#updatecallbxml) | **PUT** /accounts/{accountId}/calls/{callId}/bxml | Update Call BXML\n*ConferencesApi* | [**downloadConferenceRecording**](docs/ConferencesApi.md#downloadconferencerecording) | **GET** /accounts/{accountId}/conferences/{conferenceId}/recordings/{recordingId}/media | Download Conference Recording\n*ConferencesApi* | [**getConference**](docs/ConferencesApi.md#getconference) | **GET** /accounts/{accountId}/conferences/{conferenceId} | Get Conference Information\n*ConferencesApi* | [**getConferenceMember**](docs/ConferencesApi.md#getconferencemember) | **GET** /accounts/{accountId}/conferences/{conferenceId}/members/{memberId} | Get Conference Member\n*ConferencesApi* | [**getConferenceRecording**](docs/ConferencesApi.md#getconferencerecording) | **GET** /accounts/{accountId}/conferences/{conferenceId}/recordings/{recordingId} | Get Conference Recording Information\n*ConferencesApi* | [**listConferenceRecordings**](docs/ConferencesApi.md#listconferencerecordings) | **GET** /accounts/{accountId}/conferences/{conferenceId}/recordings | Get Conference Recordings\n*ConferencesApi* | [**listConferences**](docs/ConferencesApi.md#listconferences) | **GET** /accounts/{accountId}/conferences | Get Conferences\n*ConferencesApi* | [**updateConference**](docs/ConferencesApi.md#updateconference) | **POST** /accounts/{accountId}/conferences/{conferenceId} | Update Conference\n*ConferencesApi* | [**updateConferenceBxml**](docs/ConferencesApi.md#updateconferencebxml) | **PUT** /accounts/{accountId}/conferences/{conferenceId}/bxml | Update Conference BXML\n*ConferencesApi* | [**updateConferenceMember**](docs/ConferencesApi.md#updateconferencemember) | **PUT** /accounts/{accountId}/conferences/{conferenceId}/members/{memberId} | Update Conference Member\n*MFAApi* | [**generateMessagingCode**](docs/MFAApi.md#generatemessagingcode) | **POST** /accounts/{accountId}/code/messaging | Messaging Authentication Code\n*MFAApi* | [**generateVoiceCode**](docs/MFAApi.md#generatevoicecode) | **POST** /accounts/{accountId}/code/voice | Voice Authentication Code\n*MFAApi* | [**verifyCode**](docs/MFAApi.md#verifycode) | **POST** /accounts/{accountId}/code/verify | Verify Authentication Code\n*MediaApi* | [**deleteMedia**](docs/MediaApi.md#deletemedia) | **DELETE** /users/{accountId}/media/{mediaId} | Delete Media\n*MediaApi* | [**getMedia**](docs/MediaApi.md#getmedia) | **GET** /users/{accountId}/media/{mediaId} | Get Media\n*MediaApi* | [**listMedia**](docs/MediaApi.md#listmedia) | **GET** /users/{accountId}/media | List Media\n*MediaApi* | [**uploadMedia**](docs/MediaApi.md#uploadmedia) | **PUT** /users/{accountId}/media/{mediaId} | Upload Media\n*MessagesApi* | [**createMessage**](docs/MessagesApi.md#createmessage) | **POST** /users/{accountId}/messages | Create Message\n*MessagesApi* | [**listMessages**](docs/MessagesApi.md#listmessages) | **GET** /users/{accountId}/messages | List Messages\n*MultiChannelApi* | [**createMultiChannelMessage**](docs/MultiChannelApi.md#createmultichannelmessage) | **POST** /users/{accountId}/messages/multiChannel | Create Multi-Channel Message\n*PhoneNumberLookupApi* | [**createAsyncBulkLookup**](docs/PhoneNumberLookupApi.md#createasyncbulklookup) | **POST** /accounts/{accountId}/phoneNumberLookup/bulk | Create Asynchronous Bulk Number Lookup\n*PhoneNumberLookupApi* | [**createSyncLookup**](docs/PhoneNumberLookupApi.md#createsynclookup) | **POST** /accounts/{accountId}/phoneNumberLookup | Create Synchronous Number Lookup\n*PhoneNumberLookupApi* | [**getAsyncBulkLookup**](docs/PhoneNumberLookupApi.md#getasyncbulklookup) | **GET** /accounts/{accountId}/phoneNumberLookup/bulk/{requestId} | Get Asynchronous Bulk Number Lookup\n*RecordingsApi* | [**deleteRecording**](docs/RecordingsApi.md#deleterecording) | **DELETE** /accounts/{accountId}/calls/{callId}/recordings/{recordingId} | Delete Recording\n*RecordingsApi* | [**deleteRecordingMedia**](docs/RecordingsApi.md#deleterecordingmedia) | **DELETE** /accounts/{accountId}/calls/{callId}/recordings/{recordingId}/media | Delete Recording Media\n*RecordingsApi* | [**deleteRecordingTranscription**](docs/RecordingsApi.md#deleterecordingtranscription) | **DELETE** /accounts/{accountId}/calls/{callId}/recordings/{recordingId}/transcription | Delete Transcription\n*RecordingsApi* | [**downloadCallRecording**](docs/RecordingsApi.md#downloadcallrecording) | **GET** /accounts/{accountId}/calls/{callId}/recordings/{recordingId}/media | Download Recording\n*RecordingsApi* | [**getCallRecording**](docs/RecordingsApi.md#getcallrecording) | **GET** /accounts/{accountId}/calls/{callId}/recordings/{recordingId} | Get Call Recording\n*RecordingsApi* | [**getRecordingTranscription**](docs/RecordingsApi.md#getrecordingtranscription) | **GET** /accounts/{accountId}/calls/{callId}/recordings/{recordingId}/transcription | Get Transcription\n*RecordingsApi* | [**listAccountCallRecordings**](docs/RecordingsApi.md#listaccountcallrecordings) | **GET** /accounts/{accountId}/recordings | Get Call Recordings\n*RecordingsApi* | [**listCallRecordings**](docs/RecordingsApi.md#listcallrecordings) | **GET** /accounts/{accountId}/calls/{callId}/recordings | List Call Recordings\n*RecordingsApi* | [**transcribeCallRecording**](docs/RecordingsApi.md#transcribecallrecording) | **POST** /accounts/{accountId}/calls/{callId}/recordings/{recordingId}/transcription | Create Transcription Request\n*RecordingsApi* | [**updateCallRecordingState**](docs/RecordingsApi.md#updatecallrecordingstate) | **PUT** /accounts/{accountId}/calls/{callId}/recording | Update Recording\n*StatisticsApi* | [**getStatistics**](docs/StatisticsApi.md#getstatistics) | **GET** /accounts/{accountId}/statistics | Get Account Statistics\n*TollFreeVerificationApi* | [**createWebhookSubscription**](docs/TollFreeVerificationApi.md#createwebhooksubscription) | **POST** /accounts/{accountId}/tollFreeVerification/webhooks/subscriptions | Create Webhook Subscription\n*TollFreeVerificationApi* | [**deleteVerificationRequest**](docs/TollFreeVerificationApi.md#deleteverificationrequest) | **DELETE** /accounts/{accountId}/phoneNumbers/{phoneNumber}/tollFreeVerification | Delete a Toll-Free Verification Submission\n*TollFreeVerificationApi* | [**deleteWebhookSubscription**](docs/TollFreeVerificationApi.md#deletewebhooksubscription) | **DELETE** /accounts/{accountId}/tollFreeVerification/webhooks/subscriptions/{id} | Delete Webhook Subscription\n*TollFreeVerificationApi* | [**getTollFreeVerificationStatus**](docs/TollFreeVerificationApi.md#gettollfreeverificationstatus) | **GET** /accounts/{accountId}/phoneNumbers/{phoneNumber}/tollFreeVerification | Get Toll-Free Verification Status\n*TollFreeVerificationApi* | [**listTollFreeUseCases**](docs/TollFreeVerificationApi.md#listtollfreeusecases) | **GET** /tollFreeVerification/useCases | List Toll-Free Use Cases\n*TollFreeVerificationApi* | [**listWebhookSubscriptions**](docs/TollFreeVerificationApi.md#listwebhooksubscriptions) | **GET** /accounts/{accountId}/tollFreeVerification/webhooks/subscriptions | List Webhook Subscriptions\n*TollFreeVerificationApi* | [**requestTollFreeVerification**](docs/TollFreeVerificationApi.md#requesttollfreeverification) | **POST** /accounts/{accountId}/tollFreeVerification | Request Toll-Free Verification\n*TollFreeVerificationApi* | [**updateTollFreeVerificationRequest**](docs/TollFreeVerificationApi.md#updatetollfreeverificationrequest) | **PUT** /accounts/{accountId}/phoneNumbers/{phoneNumber}/tollFreeVerification | Update Toll-Free Verification Request\n*TollFreeVerificationApi* | [**updateWebhookSubscription**](docs/TollFreeVerificationApi.md#updatewebhooksubscription) | **PUT** /accounts/{accountId}/tollFreeVerification/webhooks/subscriptions/{id} | Update Webhook Subscription\n*TranscriptionsApi* | [**deleteRealTimeTranscription**](docs/TranscriptionsApi.md#deleterealtimetranscription) | **DELETE** /accounts/{accountId}/calls/{callId}/transcriptions/{transcriptionId} | Delete Real-time Transcription\n*TranscriptionsApi* | [**getRealTimeTranscription**](docs/TranscriptionsApi.md#getrealtimetranscription) | **GET** /accounts/{accountId}/calls/{callId}/transcriptions/{transcriptionId} | Get Real-time Transcription\n*TranscriptionsApi* | [**listRealTimeTranscriptions**](docs/TranscriptionsApi.md#listrealtimetranscriptions) | **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 - [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 - [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 - [ModelError](docs/ModelError.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","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbandwidth%2Fnode-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbandwidth%2Fnode-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbandwidth%2Fnode-sdk/lists"}