diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml index 763a5cf0..760512b5 100644 --- a/.github/workflows/test-pr.yml +++ b/.github/workflows/test-pr.yml @@ -36,15 +36,15 @@ jobs: strategy: matrix: os: [windows-2022, windows-2025, ubuntu-22.04, ubuntu-24.04] - java-version: ["11", "17", "21"] + java-version: ["11", "17", "21", "25"] distribution: ["zulu", "temurin"] fail-fast: false steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up JDK - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: distribution: ${{ matrix.distribution }} java-version: ${{ matrix.java-version }} diff --git a/.gitignore b/.gitignore index 3ef06f40..891c9710 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,8 @@ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* +*.prefs + # build files **/target target diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index a1c64a70..52345def 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -205,6 +205,10 @@ src/main/java/com/bandwidth/sdk/auth/ApiKeyAuth.java src/main/java/com/bandwidth/sdk/auth/Authentication.java src/main/java/com/bandwidth/sdk/auth/HttpBasicAuth.java src/main/java/com/bandwidth/sdk/auth/HttpBearerAuth.java +src/main/java/com/bandwidth/sdk/auth/OAuth.java +src/main/java/com/bandwidth/sdk/auth/OAuthFlow.java +src/main/java/com/bandwidth/sdk/auth/OAuthOkHttpClient.java +src/main/java/com/bandwidth/sdk/auth/RetryingOAuth.java src/main/java/com/bandwidth/sdk/model/AbstractOpenApiSchema.java src/main/java/com/bandwidth/sdk/model/AccountStatistics.java src/main/java/com/bandwidth/sdk/model/AdditionalDenialReason.java diff --git a/.openapi-generator/VERSION b/.openapi-generator/VERSION index 758bb9c8..971ecb25 100644 --- a/.openapi-generator/VERSION +++ b/.openapi-generator/VERSION @@ -1 +1 @@ -7.10.0 +7.16.0 diff --git a/README.md b/README.md index 12354201..65c1ed97 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Bandwidth - API version: 1.0.0 - - Generator version: 7.10.0 + - Generator version: 7.16.0 Bandwidth's Communication APIs @@ -98,6 +98,10 @@ public class Example { Basic.setUsername("YOUR USERNAME"); Basic.setPassword("YOUR PASSWORD"); + // Configure OAuth2 access token for authorization: OAuth2 + OAuth OAuth2 = (OAuth) defaultClient.getAuthentication("OAuth2"); + OAuth2.setAccessToken("YOUR ACCESS TOKEN"); + CallsApi apiInstance = new CallsApi(defaultClient); String accountId = "9900000"; // String | Your Bandwidth Account ID. CreateCall createCall = new CreateCall(); // CreateCall | JSON object containing information to create an outbound call @@ -341,6 +345,14 @@ Authentication schemes defined for the API: - **Type**: HTTP basic authentication + +### OAuth2 + +- **Type**: OAuth +- **Flow**: application +- **Authorization URL**: +- **Scopes**: N/A + ## Recommendation diff --git a/api/openapi.yaml b/api/openapi.yaml index a85e5348..fa2dfa31 100644 --- a/api/openapi.yaml +++ b/api/openapi.yaml @@ -11,6 +11,7 @@ servers: - url: / security: - Basic: [] +- OAuth2: [] tags: - name: Messages - name: Media @@ -53,7 +54,7 @@ paths: application/json: schema: items: - $ref: '#/components/schemas/media' + $ref: "#/components/schemas/media" type: array description: OK headers: @@ -67,49 +68,49 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Bad Request "401": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Unauthorized "403": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Forbidden "404": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Not Found "406": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Not Acceptable "415": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Unsupported Media Type "429": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Too Many Requests "500": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Internal Server Error summary: List Media tags: @@ -154,49 +155,49 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Bad Request "401": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Unauthorized "403": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Forbidden "404": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Not Found "406": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Not Acceptable "415": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Unsupported Media Type "429": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Too Many Requests "500": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Internal Server Error summary: Delete Media tags: @@ -238,49 +239,49 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Bad Request "401": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Unauthorized "403": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Forbidden "404": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Not Found "406": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Not Acceptable "415": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Unsupported Media Type "429": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Too Many Requests "500": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Internal Server Error summary: Get Media tags: @@ -335,7 +336,7 @@ paths: type: string style: simple requestBody: - $ref: '#/components/requestBodies/uploadMediaRequest' + $ref: "#/components/requestBodies/uploadMediaRequest" responses: "204": description: No Content @@ -343,49 +344,49 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Bad Request "401": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Unauthorized "403": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Forbidden "404": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Not Found "406": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Not Acceptable "415": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Unsupported Media Type "429": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Too Many Requests "500": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Internal Server Error summary: Upload Media tags: @@ -454,7 +455,7 @@ paths: name: messageStatus required: false schema: - $ref: '#/components/schemas/messageStatusEnum' + $ref: "#/components/schemas/messageStatusEnum" style: form - description: The direction of the message. One of INBOUND OUTBOUND. explode: true @@ -462,7 +463,7 @@ paths: name: messageDirection required: false schema: - $ref: '#/components/schemas/listMessageDirectionEnum' + $ref: "#/components/schemas/listMessageDirectionEnum" style: form - description: The name of the carrier used for this message. Possible values include but are not limited to Verizon and TMobile. Special characters need @@ -481,7 +482,7 @@ paths: name: messageType required: false schema: - $ref: '#/components/schemas/messageTypeEnum' + $ref: "#/components/schemas/messageTypeEnum" style: form - description: The error code of the message. example: 9902 @@ -548,7 +549,7 @@ paths: name: product required: false schema: - $ref: '#/components/schemas/productTypeEnum' + $ref: "#/components/schemas/productTypeEnum" style: form - description: Location Id associated with the message. example: 123ABC @@ -682,49 +683,49 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/messagesList' + $ref: "#/components/schemas/messagesList" description: OK "400": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Bad Request "401": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Unauthorized "403": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Forbidden "404": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Not Found "415": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Unsupported Media Type "429": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Too Many Requests "500": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Internal Server Error summary: List Messages tags: @@ -734,7 +735,7 @@ paths: post: callbacks: statusCallback: - $ref: '#/components/callbacks/statusCallback' + $ref: "#/components/callbacks/statusCallback" description: Endpoint for sending text messages and picture messages using V2 messaging. operationId: createMessage @@ -749,67 +750,67 @@ paths: type: string style: simple requestBody: - $ref: '#/components/requestBodies/createMessageRequest' + $ref: "#/components/requestBodies/createMessageRequest" responses: "202": content: application/json: schema: - $ref: '#/components/schemas/message' + $ref: "#/components/schemas/message" description: Accepted "400": content: application/json: schema: - $ref: '#/components/schemas/createMessageRequestError' + $ref: "#/components/schemas/createMessageRequestError" description: Bad Request "401": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Unauthorized "403": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Forbidden "404": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Not Found "405": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Method Not Allowed "406": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Not Acceptable "415": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Unsupported Media Type "429": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Too Many Requests "500": content: application/json: schema: - $ref: '#/components/schemas/messagingRequestError' + $ref: "#/components/schemas/messagingRequestError" description: Internal Server Error summary: Create Message tags: @@ -824,7 +825,7 @@ paths: post: callbacks: statusCallback: - $ref: '#/components/callbacks/statusCallback' + $ref: "#/components/callbacks/statusCallback" description: Endpoint for sending Multi-Channel messages. operationId: createMultiChannelMessage parameters: @@ -838,13 +839,13 @@ paths: type: string style: simple requestBody: - $ref: '#/components/requestBodies/createMultiChannelMessageRequest' + $ref: "#/components/requestBodies/createMultiChannelMessageRequest" responses: "202": content: application/json: schema: - $ref: '#/components/schemas/createMultiChannelMessageResponse' + $ref: "#/components/schemas/createMultiChannelMessageResponse" description: Accepted "400": content: @@ -859,7 +860,7 @@ paths: source: field: "channelList[0].from" schema: - $ref: '#/components/schemas/multiChannelError' + $ref: "#/components/schemas/multiChannelError" description: Bad Request "401": content: @@ -872,7 +873,7 @@ paths: description: Authentication Failed source: {} schema: - $ref: '#/components/schemas/multiChannelError' + $ref: "#/components/schemas/multiChannelError" description: Unauthorized "403": content: @@ -885,7 +886,7 @@ paths: description: Access Denied source: {} schema: - $ref: '#/components/schemas/multiChannelError' + $ref: "#/components/schemas/multiChannelError" description: Forbidden "404": content: @@ -898,7 +899,7 @@ paths: description: Resource not found. source: {} schema: - $ref: '#/components/schemas/multiChannelError' + $ref: "#/components/schemas/multiChannelError" description: Not Found "405": content: @@ -911,7 +912,7 @@ paths: description: Method 'PUT' not supported for this resource. source: {} schema: - $ref: '#/components/schemas/multiChannelError' + $ref: "#/components/schemas/multiChannelError" description: Method Not Allowed "406": description: Not Acceptable @@ -928,7 +929,7 @@ paths: source: header: Content-Type schema: - $ref: '#/components/schemas/multiChannelError' + $ref: "#/components/schemas/multiChannelError" description: Unsupported Media Type "429": content: @@ -942,7 +943,7 @@ paths: Please retry later. source: {} schema: - $ref: '#/components/schemas/multiChannelError' + $ref: "#/components/schemas/multiChannelError" description: Too Many Requests "500": content: @@ -955,14 +956,14 @@ paths: description: Internal server error. No further information available source: {} schema: - $ref: '#/components/schemas/multiChannelError' + $ref: "#/components/schemas/multiChannelError" description: Internal Server Error summary: Create Multi-Channel Message tags: - Multi-Channel x-badges: - name: Beta - color: '#076EA8' + color: "#076EA8" x-content-type: application/json x-accepts: - application/json @@ -1064,7 +1065,7 @@ paths: application/json: schema: items: - $ref: '#/components/schemas/callState' + $ref: "#/components/schemas/callState" type: array description: OK "400": @@ -1072,63 +1073,63 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -1142,9 +1143,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Get Calls tags: @@ -1170,16 +1171,16 @@ paths: type: string style: simple requestBody: - $ref: '#/components/requestBodies/createCallRequest' + $ref: "#/components/requestBodies/createCallRequest" responses: "201": content: application/json: examples: createCall Response: - $ref: '#/components/examples/createCallResponseExample' + $ref: "#/components/examples/createCallResponseExample" schema: - $ref: '#/components/schemas/createCallResponse' + $ref: "#/components/schemas/createCallResponse" description: Created headers: Location: @@ -1193,63 +1194,63 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -1263,9 +1264,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Create Call tags: @@ -1307,70 +1308,70 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/callState' + $ref: "#/components/schemas/callState" description: OK "400": content: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -1384,9 +1385,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Get Call State Information tags: @@ -1417,7 +1418,7 @@ paths: type: string style: simple requestBody: - $ref: '#/components/requestBodies/updateCallRequest' + $ref: "#/components/requestBodies/updateCallRequest" responses: "200": description: OK @@ -1426,72 +1427,72 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "409": content: application/json: examples: conflictErrorExample: - $ref: '#/components/examples/voiceConflictErrorExample' + $ref: "#/components/examples/voiceConflictErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Conflict "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -1505,9 +1506,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Update Call tags: @@ -1542,7 +1543,7 @@ paths: type: string style: simple requestBody: - $ref: '#/components/requestBodies/updateCallBxmlRequest' + $ref: "#/components/requestBodies/updateCallBxmlRequest" responses: "204": description: Call BXML was successfully replaced. @@ -1551,72 +1552,72 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "409": content: application/json: examples: conflictErrorExample: - $ref: '#/components/examples/voiceConflictErrorExample' + $ref: "#/components/examples/voiceConflictErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Conflict "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -1630,9 +1631,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Update Call BXML tags: @@ -1719,10 +1720,10 @@ paths: application/json: examples: listConferences Response: - $ref: '#/components/examples/listConferencesResponseExample' + $ref: "#/components/examples/listConferencesResponseExample" schema: items: - $ref: '#/components/schemas/conference' + $ref: "#/components/schemas/conference" type: array description: OK "400": @@ -1730,63 +1731,63 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -1800,9 +1801,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Get Conferences tags: @@ -1840,70 +1841,70 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/conference' + $ref: "#/components/schemas/conference" description: OK "400": content: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -1917,9 +1918,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Get Conference Information tags: @@ -1949,7 +1950,7 @@ paths: type: string style: simple requestBody: - $ref: '#/components/requestBodies/updateConferenceRequest' + $ref: "#/components/requestBodies/updateConferenceRequest" responses: "204": description: Conference was successfully modified. @@ -1958,63 +1959,63 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -2028,9 +2029,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Update Conference tags: @@ -2065,7 +2066,7 @@ paths: type: string style: simple requestBody: - $ref: '#/components/requestBodies/updateConferenceBxmlRequest' + $ref: "#/components/requestBodies/updateConferenceBxmlRequest" responses: "204": description: Conference successfully modified. @@ -2074,63 +2075,63 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -2144,9 +2145,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Update Conference BXML tags: @@ -2194,70 +2195,70 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/conferenceMember' + $ref: "#/components/schemas/conferenceMember" description: OK "400": content: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -2271,9 +2272,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Get Conference Member tags: @@ -2312,7 +2313,7 @@ paths: type: string style: simple requestBody: - $ref: '#/components/requestBodies/updateConferenceMemberRequest' + $ref: "#/components/requestBodies/updateConferenceMemberRequest" responses: "204": description: Conference member was successfully modified. @@ -2321,63 +2322,63 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -2391,9 +2392,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Update Conference Member tags: @@ -2434,7 +2435,7 @@ paths: application/json: schema: items: - $ref: '#/components/schemas/conferenceRecordingMetadata' + $ref: "#/components/schemas/conferenceRecordingMetadata" type: array description: OK "400": @@ -2442,63 +2443,63 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -2512,9 +2513,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Get Conference Recordings tags: @@ -2561,70 +2562,70 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/conferenceRecordingMetadata' + $ref: "#/components/schemas/conferenceRecordingMetadata" description: OK "400": content: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -2638,9 +2639,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Get Conference Recording Information tags: @@ -2699,63 +2700,63 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -2769,9 +2770,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Download Conference Recording tags: @@ -2845,7 +2846,7 @@ paths: application/json: schema: items: - $ref: '#/components/schemas/callRecordingMetadata' + $ref: "#/components/schemas/callRecordingMetadata" type: array description: OK "400": @@ -2853,63 +2854,63 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -2923,9 +2924,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Get Call Recordings tags: @@ -2959,7 +2960,7 @@ paths: type: string style: simple requestBody: - $ref: '#/components/requestBodies/updateCallRecordingRequest' + $ref: "#/components/requestBodies/updateCallRecordingRequest" responses: "200": description: OK @@ -2968,63 +2969,63 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -3038,9 +3039,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Update Recording tags: @@ -3082,7 +3083,7 @@ paths: application/json: schema: items: - $ref: '#/components/schemas/callRecordingMetadata' + $ref: "#/components/schemas/callRecordingMetadata" type: array description: OK "400": @@ -3090,63 +3091,63 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -3160,9 +3161,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: List Call Recordings tags: @@ -3215,63 +3216,63 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -3285,9 +3286,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Delete Recording tags: @@ -3330,70 +3331,70 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/callRecordingMetadata' + $ref: "#/components/schemas/callRecordingMetadata" description: OK "400": content: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -3407,9 +3408,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Get Call Recording tags: @@ -3459,63 +3460,63 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -3529,9 +3530,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Delete Recording Media tags: @@ -3586,63 +3587,63 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -3656,9 +3657,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Download Recording tags: @@ -3713,63 +3714,63 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -3783,9 +3784,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Delete Transcription tags: @@ -3832,70 +3833,70 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/recordingTranscriptions' + $ref: "#/components/schemas/recordingTranscriptions" description: OK "400": content: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -3909,9 +3910,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Get Transcription tags: @@ -3953,7 +3954,7 @@ paths: type: string style: simple requestBody: - $ref: '#/components/requestBodies/transcribeRecordingRequest' + $ref: "#/components/requestBodies/transcribeRecordingRequest" responses: "204": description: Transcription was successfully requested. @@ -3962,63 +3963,63 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -4032,9 +4033,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Create Transcription Request tags: @@ -4064,70 +4065,70 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/accountStatistics' + $ref: "#/components/schemas/accountStatistics" description: OK "400": content: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -4141,9 +4142,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Get Account Statistics tags: @@ -4181,70 +4182,70 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/callTranscriptionMetadataList' + $ref: "#/components/schemas/callTranscriptionMetadataList" description: OK "400": content: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -4258,9 +4259,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: List Real-time Transcriptions tags: @@ -4313,63 +4314,63 @@ paths: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -4383,9 +4384,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Delete Real-time Transcription tags: @@ -4429,70 +4430,70 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/callTranscriptionResponse' + $ref: "#/components/schemas/callTranscriptionResponse" description: OK "400": content: application/json: examples: badRequestErrorExample: - $ref: '#/components/examples/voiceBadRequestErrorExample' + $ref: "#/components/examples/voiceBadRequestErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Bad Request "401": content: application/json: examples: unauthorizedErrorExample: - $ref: '#/components/examples/voiceUnauthorizedErrorExample' + $ref: "#/components/examples/voiceUnauthorizedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unauthorized "403": content: application/json: examples: forbiddenErrorExample: - $ref: '#/components/examples/voiceForbiddenErrorExample' + $ref: "#/components/examples/voiceForbiddenErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Forbidden "404": content: application/json: examples: notFoundErrorExample: - $ref: '#/components/examples/voiceNotFoundErrorExample' + $ref: "#/components/examples/voiceNotFoundErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Not Found "405": content: application/json: examples: notAllowedErrorExample: - $ref: '#/components/examples/voiceNotAllowedErrorExample' + $ref: "#/components/examples/voiceNotAllowedErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Method Not Allowed "415": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample' + $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Unsupported Media Type "429": content: application/json: examples: tooManyRequestsErrorExample: - $ref: '#/components/examples/voiceTooManyRequestsErrorExample' + $ref: "#/components/examples/voiceTooManyRequestsErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Too Many Requests headers: Retry-After: @@ -4506,9 +4507,9 @@ paths: application/json: examples: internalServerErrorExample: - $ref: '#/components/examples/voiceInternalServerErrorExample' + $ref: "#/components/examples/voiceInternalServerErrorExample" schema: - $ref: '#/components/schemas/voiceApiError' + $ref: "#/components/schemas/voiceApiError" description: Internal Server Error summary: Get Real-time Transcription tags: @@ -4533,37 +4534,37 @@ paths: type: string style: simple requestBody: - $ref: '#/components/requestBodies/codeRequest' + $ref: "#/components/requestBodies/codeRequest" responses: "200": content: application/json: schema: - $ref: '#/components/schemas/voiceCodeResponse' + $ref: "#/components/schemas/voiceCodeResponse" description: OK "400": content: application/json: schema: - $ref: '#/components/schemas/mfaRequestError' + $ref: "#/components/schemas/mfaRequestError" description: Bad Request "401": content: application/json: schema: - $ref: '#/components/schemas/mfaUnauthorizedRequestError' + $ref: "#/components/schemas/mfaUnauthorizedRequestError" description: Unauthorized "403": content: application/json: schema: - $ref: '#/components/schemas/mfaForbiddenRequestError' + $ref: "#/components/schemas/mfaForbiddenRequestError" description: Forbidden "500": content: application/json: schema: - $ref: '#/components/schemas/mfaRequestError' + $ref: "#/components/schemas/mfaRequestError" description: Internal Server Error summary: Voice Authentication Code tags: @@ -4589,37 +4590,37 @@ paths: type: string style: simple requestBody: - $ref: '#/components/requestBodies/codeRequest' + $ref: "#/components/requestBodies/codeRequest" responses: "200": content: application/json: schema: - $ref: '#/components/schemas/messagingCodeResponse' + $ref: "#/components/schemas/messagingCodeResponse" description: OK "400": content: application/json: schema: - $ref: '#/components/schemas/mfaRequestError' + $ref: "#/components/schemas/mfaRequestError" description: Bad Request "401": content: application/json: schema: - $ref: '#/components/schemas/mfaUnauthorizedRequestError' + $ref: "#/components/schemas/mfaUnauthorizedRequestError" description: Unauthorized "403": content: application/json: schema: - $ref: '#/components/schemas/mfaForbiddenRequestError' + $ref: "#/components/schemas/mfaForbiddenRequestError" description: Forbidden "500": content: application/json: schema: - $ref: '#/components/schemas/mfaRequestError' + $ref: "#/components/schemas/mfaRequestError" description: Internal Server Error summary: Messaging Authentication Code tags: @@ -4645,43 +4646,43 @@ paths: type: string style: simple requestBody: - $ref: '#/components/requestBodies/codeVerify' + $ref: "#/components/requestBodies/codeVerify" responses: "200": content: application/json: schema: - $ref: '#/components/schemas/verifyCodeResponse' + $ref: "#/components/schemas/verifyCodeResponse" description: OK "400": content: application/json: schema: - $ref: '#/components/schemas/mfaRequestError' + $ref: "#/components/schemas/mfaRequestError" description: Bad Request "401": content: application/json: schema: - $ref: '#/components/schemas/mfaUnauthorizedRequestError' + $ref: "#/components/schemas/mfaUnauthorizedRequestError" description: Unauthorized "403": content: application/json: schema: - $ref: '#/components/schemas/mfaForbiddenRequestError' + $ref: "#/components/schemas/mfaForbiddenRequestError" description: Forbidden "429": content: application/json: schema: - $ref: '#/components/schemas/mfaRequestError' + $ref: "#/components/schemas/mfaRequestError" description: Too Many Requests "500": content: application/json: schema: - $ref: '#/components/schemas/mfaRequestError' + $ref: "#/components/schemas/mfaRequestError" description: Internal Server Error summary: Verify Authentication Code tags: @@ -4707,16 +4708,16 @@ paths: type: string style: simple requestBody: - $ref: '#/components/requestBodies/createLookupRequest' + $ref: "#/components/requestBodies/createLookupRequest" responses: "202": content: application/json: examples: lookupResponseExample: - $ref: '#/components/examples/lookupInProgressExample' + $ref: "#/components/examples/lookupInProgressExample" schema: - $ref: '#/components/schemas/createLookupResponse' + $ref: "#/components/schemas/createLookupResponse" description: Accepted "400": content: @@ -4727,7 +4728,7 @@ paths: value: message: "Some tns do not match e164 format: 1234" schema: - $ref: '#/components/schemas/tnLookupRequestError' + $ref: "#/components/schemas/tnLookupRequestError" description: Bad Request "401": content: @@ -4738,7 +4739,7 @@ paths: value: message: Unauthorized schema: - $ref: '#/components/schemas/tnLookupRequestError' + $ref: "#/components/schemas/tnLookupRequestError" description: Unauthorized "403": content: @@ -4753,7 +4754,7 @@ paths: requires existence of either a 'X-Amz-Date' or a 'Date' header. Authorization=Basic Y2tvZloPTGhHgywYIzGlcGVlcGvvcGovYTIGIt==' schema: - $ref: '#/components/schemas/tnLookupRequestError' + $ref: "#/components/schemas/tnLookupRequestError" description: Forbidden "415": content: @@ -4764,7 +4765,7 @@ paths: value: message: Content-Type must be application/json. schema: - $ref: '#/components/schemas/tnLookupRequestError' + $ref: "#/components/schemas/tnLookupRequestError" description: Unsupported Media Type "429": content: @@ -4775,7 +4776,7 @@ paths: value: message: Too many requests. schema: - $ref: '#/components/schemas/tnLookupRequestError' + $ref: "#/components/schemas/tnLookupRequestError" description: Too Many Requests "500": content: @@ -4786,7 +4787,7 @@ paths: value: message: Request has not been passed further. schema: - $ref: '#/components/schemas/tnLookupRequestError' + $ref: "#/components/schemas/tnLookupRequestError" description: Internal Server Error summary: Create Lookup tags: @@ -4826,19 +4827,19 @@ paths: application/json: examples: lookupInProgressExample: - $ref: '#/components/examples/lookupInProgressExample' + $ref: "#/components/examples/lookupInProgressExample" lookupFailedExample: - $ref: '#/components/examples/lookupFailedExample' + $ref: "#/components/examples/lookupFailedExample" lookupSingleNumberCompleteExample: - $ref: '#/components/examples/lookupSingleNumberCompleteExample' + $ref: "#/components/examples/lookupSingleNumberCompleteExample" lookupMultipleNumbersCompleteExample: - $ref: '#/components/examples/lookupMultipleNumbersCompleteExample' + $ref: "#/components/examples/lookupMultipleNumbersCompleteExample" lookupMultipleNumbersPartialCompleteExample: - $ref: '#/components/examples/lookupMultipleNumbersPartialCompleteExample' + $ref: "#/components/examples/lookupMultipleNumbersPartialCompleteExample" lookupSingleNumberCompleteNoInfoExample: - $ref: '#/components/examples/lookupSingleNumberCompleteNoInfoExample' + $ref: "#/components/examples/lookupSingleNumberCompleteNoInfoExample" schema: - $ref: '#/components/schemas/lookupStatus' + $ref: "#/components/schemas/lookupStatus" description: OK "400": content: @@ -4849,7 +4850,7 @@ paths: value: message: "Some tns do not match e164 format: 1234" schema: - $ref: '#/components/schemas/tnLookupRequestError' + $ref: "#/components/schemas/tnLookupRequestError" description: Bad Request "401": content: @@ -4860,7 +4861,7 @@ paths: value: message: Unauthorized schema: - $ref: '#/components/schemas/tnLookupRequestError' + $ref: "#/components/schemas/tnLookupRequestError" description: Unauthorized "403": content: @@ -4875,7 +4876,7 @@ paths: requires existence of either a 'X-Amz-Date' or a 'Date' header. Authorization=Basic Y2tvZloPTGhHgywYIzGlcGVlcGvvcGovYTIGIt==' schema: - $ref: '#/components/schemas/tnLookupRequestError' + $ref: "#/components/schemas/tnLookupRequestError" description: Forbidden "404": description: Not Found @@ -4888,7 +4889,7 @@ paths: value: message: Too many requests. schema: - $ref: '#/components/schemas/tnLookupRequestError' + $ref: "#/components/schemas/tnLookupRequestError" description: Too Many Requests "500": content: @@ -4899,7 +4900,7 @@ paths: value: message: Request has not been passed further. schema: - $ref: '#/components/schemas/tnLookupRequestError' + $ref: "#/components/schemas/tnLookupRequestError" description: Internal Server Error summary: Get Lookup Request Status tags: @@ -4913,7 +4914,7 @@ paths: post: callbacks: tfVerificationStatus: - $ref: '#/components/callbacks/tfVerificationStatus' + $ref: "#/components/callbacks/tfVerificationStatus" description: Submit a request for verification of a toll-free phone number. operationId: requestTollFreeVerification parameters: @@ -4927,7 +4928,7 @@ paths: type: string style: simple requestBody: - $ref: '#/components/requestBodies/requestTollFreeVerificationRequest' + $ref: "#/components/requestBodies/requestTollFreeVerificationRequest" responses: "202": description: Accepted @@ -4942,7 +4943,7 @@ paths: address. optInWorkflowImageURLs: Entries must be a valid array of objects. schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Bad Request "401": content: @@ -4951,7 +4952,7 @@ paths: description: Client is providing incorrect or invalid credentials. type: unauthorized schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Unauthorized "403": content: @@ -4960,7 +4961,7 @@ paths: description: Client is not authorized for the action. type: forbidden schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Forbidden "405": content: @@ -4969,7 +4970,7 @@ paths: description: Method is not allowed. type: Method Not Allowed schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Method Not Allowed "429": content: @@ -4978,7 +4979,7 @@ paths: description: Throttling error. Too many requests. type: Too Many Requests schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Too Many Requests "500": content: @@ -4987,7 +4988,7 @@ paths: description: Internal Server Error. type: Internal Server Error schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Internal Server Error "503": content: @@ -4996,7 +4997,7 @@ paths: description: Service Unavailable Error. type: Service Unavailable schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Service Unavailable summary: Request Toll-Free Verification tags: @@ -5028,7 +5029,7 @@ paths: name: phoneNumber required: true schema: - $ref: '#/components/schemas/tfPhoneNumber' + $ref: "#/components/schemas/tfPhoneNumber" style: simple responses: "204": @@ -5040,7 +5041,7 @@ paths: description: Cannot process request. type: bad request schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Bad Request "401": content: @@ -5049,7 +5050,7 @@ paths: description: Client is providing incorrect or invalid credentials. type: unauthorized schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Unauthorized "403": content: @@ -5058,7 +5059,7 @@ paths: description: Client is not authorized for the action. type: forbidden schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Forbidden "404": content: @@ -5067,7 +5068,7 @@ paths: description: Cannot find the requested resource. type: Not Found schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Cannot find the requested resource. "405": content: @@ -5076,7 +5077,7 @@ paths: description: Method is not allowed. type: Method Not Allowed schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Method Not Allowed "429": content: @@ -5085,7 +5086,7 @@ paths: description: Throttling error. Too many requests. type: Too Many Requests schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Too Many Requests "500": content: @@ -5094,7 +5095,7 @@ paths: description: Internal Server Error. type: Internal Server Error schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Internal Server Error "503": content: @@ -5103,7 +5104,7 @@ paths: description: Service Unavailable Error. type: Service Unavailable schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Service Unavailable summary: Delete a Toll-Free Verification Submission tags: @@ -5132,14 +5133,14 @@ paths: name: phoneNumber required: true schema: - $ref: '#/components/schemas/tfPhoneNumber' + $ref: "#/components/schemas/tfPhoneNumber" style: simple responses: "200": content: application/json: schema: - $ref: '#/components/schemas/tfvStatus' + $ref: "#/components/schemas/tfvStatus" description: OK "400": content: @@ -5148,7 +5149,7 @@ paths: description: Cannot process request. type: bad request schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Bad Request "401": content: @@ -5157,7 +5158,7 @@ paths: description: Client is providing incorrect or invalid credentials. type: unauthorized schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Unauthorized "403": content: @@ -5166,7 +5167,7 @@ paths: description: Client is not authorized for the action. type: forbidden schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Forbidden "404": content: @@ -5175,7 +5176,7 @@ paths: description: Cannot find the requested resource. type: Not Found schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Cannot find the requested resource. "405": content: @@ -5184,7 +5185,7 @@ paths: description: Method is not allowed. type: Method Not Allowed schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Method Not Allowed "429": content: @@ -5193,7 +5194,7 @@ paths: description: Throttling error. Too many requests. type: Too Many Requests schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Too Many Requests "500": content: @@ -5202,7 +5203,7 @@ paths: description: Internal Server Error. type: Internal Server Error schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Internal Server Error "503": content: @@ -5211,7 +5212,7 @@ paths: description: Service Unavailable Error. type: Service Unavailable schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Service Unavailable summary: Get Toll-Free Verification Status tags: @@ -5221,7 +5222,7 @@ paths: put: callbacks: tfVerificationStatus: - $ref: '#/components/callbacks/tfVerificationStatus' + $ref: "#/components/callbacks/tfVerificationStatus" description: |- Updates a toll-free verification request. Submissions are only eligible for resubmission for 7 days within being processed and if resubmission is allowed (resubmitAllowed field is true). @@ -5243,10 +5244,10 @@ paths: name: phoneNumber required: true schema: - $ref: '#/components/schemas/tfPhoneNumber' + $ref: "#/components/schemas/tfPhoneNumber" style: simple requestBody: - $ref: '#/components/requestBodies/updateTollFreeVerificationRequestRequest' + $ref: "#/components/requestBodies/updateTollFreeVerificationRequestRequest" responses: "202": description: Accepted @@ -5261,7 +5262,7 @@ paths: address. optInWorkflowImageURLs: Entries must be a valid array of objects. schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Bad Request "401": content: @@ -5270,7 +5271,7 @@ paths: description: Client is providing incorrect or invalid credentials. type: unauthorized schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Unauthorized "403": content: @@ -5279,7 +5280,7 @@ paths: description: Client is not authorized for the action. type: forbidden schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Forbidden "405": content: @@ -5288,7 +5289,7 @@ paths: description: Method is not allowed. type: Method Not Allowed schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Method Not Allowed "429": content: @@ -5297,7 +5298,7 @@ paths: description: Throttling error. Too many requests. type: Too Many Requests schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Too Many Requests "500": content: @@ -5306,7 +5307,7 @@ paths: description: Internal Server Error. type: Internal Server Error schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Internal Server Error "503": content: @@ -5315,7 +5316,7 @@ paths: description: Service Unavailable Error. type: Service Unavailable schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Service Unavailable summary: Update Toll-Free Verification Request tags: @@ -5347,7 +5348,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/webhookSubscriptionsListBody' + $ref: "#/components/schemas/webhookSubscriptionsListBody" description: OK "400": content: @@ -5360,7 +5361,7 @@ paths: address. optInWorkflowImageURLs: Entries must be a valid array of objects. schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Bad Request "401": content: @@ -5369,7 +5370,7 @@ paths: description: Client is providing incorrect or invalid credentials. type: unauthorized schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Unauthorized "403": content: @@ -5378,7 +5379,7 @@ paths: description: Client is not authorized for the action. type: forbidden schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Forbidden "405": content: @@ -5387,7 +5388,7 @@ paths: description: Method is not allowed. type: Method Not Allowed schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Method Not Allowed "429": content: @@ -5396,7 +5397,7 @@ paths: description: Throttling error. Too many requests. type: Too Many Requests schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Too Many Requests "500": content: @@ -5405,7 +5406,7 @@ paths: description: Internal Server Error. type: Internal Server Error schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Internal Server Error "503": content: @@ -5414,7 +5415,7 @@ paths: description: Service Unavailable Error. type: Service Unavailable schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Service Unavailable summary: List Webhook Subscriptions tags: @@ -5438,13 +5439,13 @@ paths: type: string style: simple requestBody: - $ref: '#/components/requestBodies/webhookSubscriptionRequest' + $ref: "#/components/requestBodies/webhookSubscriptionRequest" responses: "201": content: application/json: schema: - $ref: '#/components/schemas/webhookSubscription' + $ref: "#/components/schemas/webhookSubscription" description: Created "400": content: @@ -5453,7 +5454,7 @@ paths: description: Cannot process request. type: bad request schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Bad Request "401": content: @@ -5462,7 +5463,7 @@ paths: description: Client is providing incorrect or invalid credentials. type: unauthorized schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Unauthorized "403": content: @@ -5471,7 +5472,7 @@ paths: description: Client is not authorized for the action. type: forbidden schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Forbidden "404": content: @@ -5480,7 +5481,7 @@ paths: description: Cannot find the requested resource. type: Not Found schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Cannot find the requested resource. "405": content: @@ -5489,7 +5490,7 @@ paths: description: Method is not allowed. type: Method Not Allowed schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Method Not Allowed "429": content: @@ -5498,7 +5499,7 @@ paths: description: Throttling error. Too many requests. type: Too Many Requests schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Too Many Requests "500": content: @@ -5507,7 +5508,7 @@ paths: description: Internal Server Error. type: Internal Server Error schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Internal Server Error "503": content: @@ -5516,7 +5517,7 @@ paths: description: Service Unavailable Error. type: Service Unavailable schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Service Unavailable summary: Create Webhook Subscription tags: @@ -5560,7 +5561,7 @@ paths: description: Cannot process request. type: bad request schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Bad Request "401": content: @@ -5569,7 +5570,7 @@ paths: description: Client is providing incorrect or invalid credentials. type: unauthorized schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Unauthorized "403": content: @@ -5578,7 +5579,7 @@ paths: description: Client is not authorized for the action. type: forbidden schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Forbidden "404": content: @@ -5587,7 +5588,7 @@ paths: description: Cannot find the requested resource. type: Not Found schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Cannot find the requested resource. "405": content: @@ -5596,7 +5597,7 @@ paths: description: Method is not allowed. type: Method Not Allowed schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Method Not Allowed "429": content: @@ -5605,7 +5606,7 @@ paths: description: Throttling error. Too many requests. type: Too Many Requests schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Too Many Requests "500": content: @@ -5614,7 +5615,7 @@ paths: description: Internal Server Error. type: Internal Server Error schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Internal Server Error "503": content: @@ -5623,7 +5624,7 @@ paths: description: Service Unavailable Error. type: Service Unavailable schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Service Unavailable summary: Delete Webhook Subscription tags: @@ -5654,13 +5655,13 @@ paths: type: string style: simple requestBody: - $ref: '#/components/requestBodies/webhookSubscriptionRequest' + $ref: "#/components/requestBodies/webhookSubscriptionRequest" responses: "200": content: application/json: schema: - $ref: '#/components/schemas/webhookSubscription' + $ref: "#/components/schemas/webhookSubscription" description: OK "400": content: @@ -5669,7 +5670,7 @@ paths: description: Cannot process request. type: bad request schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Bad Request "401": content: @@ -5678,7 +5679,7 @@ paths: description: Client is providing incorrect or invalid credentials. type: unauthorized schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Unauthorized "403": content: @@ -5687,7 +5688,7 @@ paths: description: Client is not authorized for the action. type: forbidden schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Forbidden "404": content: @@ -5696,7 +5697,7 @@ paths: description: Cannot find the requested resource. type: Not Found schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Cannot find the requested resource. "405": content: @@ -5705,7 +5706,7 @@ paths: description: Method is not allowed. type: Method Not Allowed schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Method Not Allowed "429": content: @@ -5714,7 +5715,7 @@ paths: description: Throttling error. Too many requests. type: Too Many Requests schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Too Many Requests "500": content: @@ -5723,7 +5724,7 @@ paths: description: Internal Server Error. type: Internal Server Error schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Internal Server Error "503": content: @@ -5732,7 +5733,7 @@ paths: description: Service Unavailable Error. type: Service Unavailable schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Service Unavailable summary: Update Webhook Subscription tags: @@ -5752,7 +5753,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/useCases' + $ref: "#/components/schemas/useCases" description: OK "400": content: @@ -5761,7 +5762,7 @@ paths: description: Cannot process request. type: bad request schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Bad Request "401": content: @@ -5770,7 +5771,7 @@ paths: description: Client is providing incorrect or invalid credentials. type: unauthorized schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Unauthorized "403": content: @@ -5779,7 +5780,7 @@ paths: description: Client is not authorized for the action. type: forbidden schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Forbidden "404": content: @@ -5788,7 +5789,7 @@ paths: description: Cannot find the requested resource. type: Not Found schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Cannot find the requested resource. "405": content: @@ -5797,7 +5798,7 @@ paths: description: Method is not allowed. type: Method Not Allowed schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Method Not Allowed "429": content: @@ -5806,7 +5807,7 @@ paths: description: Throttling error. Too many requests. type: Too Many Requests schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Too Many Requests "500": content: @@ -5815,7 +5816,7 @@ paths: description: Internal Server Error. type: Internal Server Error schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Internal Server Error "503": content: @@ -5824,7 +5825,7 @@ paths: description: Service Unavailable Error. type: Service Unavailable schema: - $ref: '#/components/schemas/tfvError' + $ref: "#/components/schemas/tfvError" description: Service Unavailable summary: List Toll-Free Use Cases tags: @@ -5844,11 +5845,11 @@ components: application/json: examples: smsMessageReceivedCallback: - $ref: '#/components/examples/smsMessageReceivedCallbackExample' + $ref: "#/components/examples/smsMessageReceivedCallbackExample" mmsMessageReceivedCallback: - $ref: '#/components/examples/mmsMessageReceivedCallbackExample' + $ref: "#/components/examples/mmsMessageReceivedCallbackExample" schema: - $ref: '#/components/schemas/inboundCallback' + $ref: "#/components/schemas/inboundCallback" description: "
This Inbound Message Webhook is an envelope containing\ \ either a received (MO) message to your \nmessage-enabled Bandwidth\ \ telephone number or a multichannel client's response to a suggestion\ @@ -5872,17 +5873,17 @@ components: application/json: examples: messageSendingCallback: - $ref: '#/components/examples/messageSendingCallbackExample' + $ref: "#/components/examples/messageSendingCallbackExample" smsMessageDeliveredCallback: - $ref: '#/components/examples/smsMessageDeliveredCallbackExample' + $ref: "#/components/examples/smsMessageDeliveredCallbackExample" mmsMessageDeliveredCallback: - $ref: '#/components/examples/mmsMessageDeliveredCallbackExample' + $ref: "#/components/examples/mmsMessageDeliveredCallbackExample" groupMmsMessageDeliveredCallback: - $ref: '#/components/examples/groupMmsMessageDeliveredCallbackExample' + $ref: "#/components/examples/groupMmsMessageDeliveredCallbackExample" messageFailedCallback: - $ref: '#/components/examples/messageFailedCallbackExample' + $ref: "#/components/examples/messageFailedCallbackExample" schema: - $ref: '#/components/schemas/statusCallback' + $ref: "#/components/schemas/statusCallback" description: |-
This Outbound Message Webhook is an envelope containing status information regarding a message sent (MT)
from your message-enabled Bandwidth telephone number.
@@ -5914,7 +5915,7 @@ components:
type: string
style: simple
requestBody:
- $ref: '#/components/requestBodies/verificationWebhookRequest'
+ $ref: "#/components/requestBodies/verificationWebhookRequest"
responses:
"204":
description: No Content
@@ -5925,7 +5926,7 @@ components:
description: Cannot process request.
type: bad request
schema:
- $ref: '#/components/schemas/tfvError'
+ $ref: "#/components/schemas/tfvError"
description: Bad Request
"401":
content:
@@ -5934,7 +5935,7 @@ components:
description: Client is providing incorrect or invalid credentials.
type: unauthorized
schema:
- $ref: '#/components/schemas/tfvError'
+ $ref: "#/components/schemas/tfvError"
description: Unauthorized
"403":
content:
@@ -5943,7 +5944,7 @@ components:
description: Client is not authorized for the action.
type: forbidden
schema:
- $ref: '#/components/schemas/tfvError'
+ $ref: "#/components/schemas/tfvError"
description: Forbidden
"404":
content:
@@ -5952,7 +5953,7 @@ components:
description: Cannot find the requested resource.
type: Not Found
schema:
- $ref: '#/components/schemas/tfvError'
+ $ref: "#/components/schemas/tfvError"
description: Cannot find the requested resource.
"405":
content:
@@ -5961,7 +5962,7 @@ components:
description: Method is not allowed.
type: Method Not Allowed
schema:
- $ref: '#/components/schemas/tfvError'
+ $ref: "#/components/schemas/tfvError"
description: Method Not Allowed
"429":
content:
@@ -5970,7 +5971,7 @@ components:
description: Throttling error. Too many requests.
type: Too Many Requests
schema:
- $ref: '#/components/schemas/tfvError'
+ $ref: "#/components/schemas/tfvError"
description: Too Many Requests
"500":
content:
@@ -5979,7 +5980,7 @@ components:
description: Internal Server Error.
type: Internal Server Error
schema:
- $ref: '#/components/schemas/tfvError'
+ $ref: "#/components/schemas/tfvError"
description: Internal Server Error
"503":
content:
@@ -5988,7 +5989,7 @@ components:
description: Service Unavailable Error.
type: Service Unavailable
schema:
- $ref: '#/components/schemas/tfvError'
+ $ref: "#/components/schemas/tfvError"
description: Service Unavailable
summary: TFV status updates sent to customer's webhook URL.
examples:
@@ -6399,7 +6400,7 @@ components:
name: messageStatus
required: false
schema:
- $ref: '#/components/schemas/messageStatusEnum'
+ $ref: "#/components/schemas/messageStatusEnum"
style: form
messageDirection:
description: The direction of the message. One of INBOUND OUTBOUND.
@@ -6408,7 +6409,7 @@ components:
name: messageDirection
required: false
schema:
- $ref: '#/components/schemas/listMessageDirectionEnum'
+ $ref: "#/components/schemas/listMessageDirectionEnum"
style: form
carrierName:
description: The name of the carrier used for this message. Possible values
@@ -6429,7 +6430,7 @@ components:
name: messageType
required: false
schema:
- $ref: '#/components/schemas/messageTypeEnum'
+ $ref: "#/components/schemas/messageTypeEnum"
style: form
errorCode:
description: The error code of the message.
@@ -6503,7 +6504,7 @@ components:
name: product
required: false
schema:
- $ref: '#/components/schemas/productTypeEnum'
+ $ref: "#/components/schemas/productTypeEnum"
style: form
location:
description: Location Id associated with the message.
@@ -6858,7 +6859,7 @@ components:
name: phoneNumber
required: true
schema:
- $ref: '#/components/schemas/tfPhoneNumber'
+ $ref: "#/components/schemas/tfPhoneNumber"
style: simple
webhookSubscriptionIdPathParam:
description: Webhook subscription ID
@@ -6875,13 +6876,13 @@ components:
content:
application/json:
schema:
- $ref: '#/components/schemas/messageRequest'
+ $ref: "#/components/schemas/messageRequest"
required: true
createMultiChannelMessageRequest:
content:
application/json:
schema:
- $ref: '#/components/schemas/multiChannelMessageRequest'
+ $ref: "#/components/schemas/multiChannelMessageRequest"
required: true
uploadMediaRequest:
content:
@@ -7082,14 +7083,14 @@ components:
content:
application/json:
schema:
- $ref: '#/components/schemas/createCall'
+ $ref: "#/components/schemas/createCall"
description: JSON object containing information to create an outbound call
required: true
updateCallRequest:
content:
application/json:
schema:
- $ref: '#/components/schemas/updateCall'
+ $ref: "#/components/schemas/updateCall"
description: JSON object containing information to redirect an existing call
to a new BXML document
required: true
@@ -7119,19 +7120,19 @@ components:
content:
application/json:
schema:
- $ref: '#/components/schemas/updateCallRecording'
+ $ref: "#/components/schemas/updateCallRecording"
required: true
transcribeRecordingRequest:
content:
application/json:
schema:
- $ref: '#/components/schemas/transcribeRecording'
+ $ref: "#/components/schemas/transcribeRecording"
required: true
updateConferenceRequest:
content:
application/json:
schema:
- $ref: '#/components/schemas/updateConference'
+ $ref: "#/components/schemas/updateConference"
required: true
updateConferenceBxmlRequest:
content:
@@ -7152,20 +7153,20 @@ components:
content:
application/json:
schema:
- $ref: '#/components/schemas/updateConferenceMember'
+ $ref: "#/components/schemas/updateConferenceMember"
required: true
codeRequest:
content:
application/json:
schema:
- $ref: '#/components/schemas/codeRequest'
+ $ref: "#/components/schemas/codeRequest"
description: MFA code request body.
required: true
codeVerify:
content:
application/json:
schema:
- $ref: '#/components/schemas/verifyCodeRequest'
+ $ref: "#/components/schemas/verifyCodeRequest"
description: MFA code verify request body.
required: true
createLookupRequest:
@@ -7173,25 +7174,25 @@ components:
application/json:
examples:
singleNumberRequestExample:
- $ref: '#/components/examples/singleNumberRequestExample'
+ $ref: "#/components/examples/singleNumberRequestExample"
multipleNumberRequestExample:
- $ref: '#/components/examples/multipleNumberRequestExample'
+ $ref: "#/components/examples/multipleNumberRequestExample"
schema:
- $ref: '#/components/schemas/lookupRequest'
+ $ref: "#/components/schemas/lookupRequest"
description: Phone number lookup request.
required: true
requestTollFreeVerificationRequest:
content:
application/json:
schema:
- $ref: '#/components/schemas/verificationRequest'
+ $ref: "#/components/schemas/verificationRequest"
description: Request for verification of a toll-free phone number.
required: true
updateTollFreeVerificationRequestRequest:
content:
application/json:
schema:
- $ref: '#/components/schemas/tfvSubmissionWrapper'
+ $ref: "#/components/schemas/tfvSubmissionWrapper"
description: Update a request for verification of a toll-free phone number.
required: true
verificationWebhookRequest:
@@ -7199,17 +7200,17 @@ components:
application/json:
schema:
oneOf:
- - $ref: '#/components/schemas/verificationWebhook'
- - $ref: '#/components/schemas/verificationDenialWebhook'
- - $ref: '#/components/schemas/failureWebhook'
- - $ref: '#/components/schemas/blockedWebhook'
+ - $ref: "#/components/schemas/verificationWebhook"
+ - $ref: "#/components/schemas/verificationDenialWebhook"
+ - $ref: "#/components/schemas/failureWebhook"
+ - $ref: "#/components/schemas/blockedWebhook"
description: Verification callback status of a toll-free phone number.
required: true
webhookSubscriptionRequest:
content:
application/json:
schema:
- $ref: '#/components/schemas/webhookSubscriptionRequestSchema'
+ $ref: "#/components/schemas/webhookSubscriptionRequestSchema"
description: Information about a webhook that Bandwidth should send upon the
completion of event customer is trying to subscribe to.
required: true
@@ -7218,19 +7219,19 @@ components:
content:
application/json:
schema:
- $ref: '#/components/schemas/message'
+ $ref: "#/components/schemas/message"
description: Accepted
createMultiChannelMessageResponse:
content:
application/json:
schema:
- $ref: '#/components/schemas/createMultiChannelMessageResponse'
+ $ref: "#/components/schemas/createMultiChannelMessageResponse"
description: Accepted
listMessagesResponse:
content:
application/json:
schema:
- $ref: '#/components/schemas/messagesList'
+ $ref: "#/components/schemas/messagesList"
description: OK
getMediaResponse:
content:
@@ -7245,7 +7246,7 @@ components:
application/json:
schema:
items:
- $ref: '#/components/schemas/media'
+ $ref: "#/components/schemas/media"
type: array
description: OK
headers:
@@ -7259,61 +7260,61 @@ components:
content:
application/json:
schema:
- $ref: '#/components/schemas/messagingRequestError'
+ $ref: "#/components/schemas/messagingRequestError"
description: Bad Request
messagingNotAcceptableError:
content:
application/json:
schema:
- $ref: '#/components/schemas/messagingRequestError'
+ $ref: "#/components/schemas/messagingRequestError"
description: Not Acceptable
createMessageBadRequestError:
content:
application/json:
schema:
- $ref: '#/components/schemas/createMessageRequestError'
+ $ref: "#/components/schemas/createMessageRequestError"
description: Bad Request
messagingUnauthorizedError:
content:
application/json:
schema:
- $ref: '#/components/schemas/messagingRequestError'
+ $ref: "#/components/schemas/messagingRequestError"
description: Unauthorized
messagingForbiddenError:
content:
application/json:
schema:
- $ref: '#/components/schemas/messagingRequestError'
+ $ref: "#/components/schemas/messagingRequestError"
description: Forbidden
messagingNotFoundError:
content:
application/json:
schema:
- $ref: '#/components/schemas/messagingRequestError'
+ $ref: "#/components/schemas/messagingRequestError"
description: Not Found
messagingMethodNotAllowedError:
content:
application/json:
schema:
- $ref: '#/components/schemas/messagingRequestError'
+ $ref: "#/components/schemas/messagingRequestError"
description: Method Not Allowed
messagingInvalidMediaTypeError:
content:
application/json:
schema:
- $ref: '#/components/schemas/messagingRequestError'
+ $ref: "#/components/schemas/messagingRequestError"
description: Unsupported Media Type
messagingTooManyRequestsError:
content:
application/json:
schema:
- $ref: '#/components/schemas/messagingRequestError'
+ $ref: "#/components/schemas/messagingRequestError"
description: Too Many Requests
messagingInternalServerError:
content:
application/json:
schema:
- $ref: '#/components/schemas/messagingRequestError'
+ $ref: "#/components/schemas/messagingRequestError"
description: Internal Server Error
multiChannelBadRequestError:
content:
@@ -7328,7 +7329,7 @@ components:
source:
field: "channelList[0].from"
schema:
- $ref: '#/components/schemas/multiChannelError'
+ $ref: "#/components/schemas/multiChannelError"
description: Bad Request
multiChannelNotAcceptableError:
description: Not Acceptable
@@ -7343,7 +7344,7 @@ components:
description: Authentication Failed
source: {}
schema:
- $ref: '#/components/schemas/multiChannelError'
+ $ref: "#/components/schemas/multiChannelError"
description: Unauthorized
multiChannelForbiddenError:
content:
@@ -7356,7 +7357,7 @@ components:
description: Access Denied
source: {}
schema:
- $ref: '#/components/schemas/multiChannelError'
+ $ref: "#/components/schemas/multiChannelError"
description: Forbidden
multiChannelNotFoundError:
content:
@@ -7369,7 +7370,7 @@ components:
description: Resource not found.
source: {}
schema:
- $ref: '#/components/schemas/multiChannelError'
+ $ref: "#/components/schemas/multiChannelError"
description: Not Found
multiChannelMethodNotAllowedError:
content:
@@ -7382,7 +7383,7 @@ components:
description: Method 'PUT' not supported for this resource.
source: {}
schema:
- $ref: '#/components/schemas/multiChannelError'
+ $ref: "#/components/schemas/multiChannelError"
description: Method Not Allowed
multiChannelInvalidMediaTypeError:
content:
@@ -7397,7 +7398,7 @@ components:
source:
header: Content-Type
schema:
- $ref: '#/components/schemas/multiChannelError'
+ $ref: "#/components/schemas/multiChannelError"
description: Unsupported Media Type
multiChannelTooManyRequestsError:
content:
@@ -7411,7 +7412,7 @@ components:
retry later.
source: {}
schema:
- $ref: '#/components/schemas/multiChannelError'
+ $ref: "#/components/schemas/multiChannelError"
description: Too Many Requests
multiChannelInternalServerError:
content:
@@ -7424,16 +7425,16 @@ components:
description: Internal server error. No further information available
source: {}
schema:
- $ref: '#/components/schemas/multiChannelError'
+ $ref: "#/components/schemas/multiChannelError"
description: Internal Server Error
createCallResponse:
content:
application/json:
examples:
createCall Response:
- $ref: '#/components/examples/createCallResponseExample'
+ $ref: "#/components/examples/createCallResponseExample"
schema:
- $ref: '#/components/schemas/createCallResponse'
+ $ref: "#/components/schemas/createCallResponse"
description: Created
headers:
Location:
@@ -7446,7 +7447,7 @@ components:
content:
application/json:
schema:
- $ref: '#/components/schemas/callState'
+ $ref: "#/components/schemas/callState"
description: OK
updateCallResponse:
description: OK
@@ -7455,14 +7456,14 @@ components:
application/json:
schema:
items:
- $ref: '#/components/schemas/callState'
+ $ref: "#/components/schemas/callState"
type: array
description: OK
getStatisticsResponse:
content:
application/json:
schema:
- $ref: '#/components/schemas/accountStatistics'
+ $ref: "#/components/schemas/accountStatistics"
description: OK
updateRecordingResponse:
description: OK
@@ -7471,14 +7472,14 @@ components:
application/json:
schema:
items:
- $ref: '#/components/schemas/callRecordingMetadata'
+ $ref: "#/components/schemas/callRecordingMetadata"
type: array
description: OK
getCallRecordingResponse:
content:
application/json:
schema:
- $ref: '#/components/schemas/callRecordingMetadata'
+ $ref: "#/components/schemas/callRecordingMetadata"
description: OK
downloadRecordingMediaResponse:
content:
@@ -7495,19 +7496,19 @@ components:
content:
application/json:
schema:
- $ref: '#/components/schemas/recordingTranscriptions'
+ $ref: "#/components/schemas/recordingTranscriptions"
description: OK
listTranscriptionsResponse:
content:
application/json:
schema:
- $ref: '#/components/schemas/callTranscriptionMetadataList'
+ $ref: "#/components/schemas/callTranscriptionMetadataList"
description: OK
getCallTranscriptionResponse:
content:
application/json:
schema:
- $ref: '#/components/schemas/callTranscriptionResponse'
+ $ref: "#/components/schemas/callTranscriptionResponse"
description: OK
deleteCallTranscriptionResponse:
description: No Content
@@ -7516,109 +7517,109 @@ components:
application/json:
examples:
listConferences Response:
- $ref: '#/components/examples/listConferencesResponseExample'
+ $ref: "#/components/examples/listConferencesResponseExample"
schema:
items:
- $ref: '#/components/schemas/conference'
+ $ref: "#/components/schemas/conference"
type: array
description: OK
getConferenceResponse:
content:
application/json:
schema:
- $ref: '#/components/schemas/conference'
+ $ref: "#/components/schemas/conference"
description: OK
getConferenceMemberResponse:
content:
application/json:
schema:
- $ref: '#/components/schemas/conferenceMember'
+ $ref: "#/components/schemas/conferenceMember"
description: OK
listConferenceRecordingsResponse:
content:
application/json:
schema:
items:
- $ref: '#/components/schemas/conferenceRecordingMetadata'
+ $ref: "#/components/schemas/conferenceRecordingMetadata"
type: array
description: OK
getConferenceRecordingResponse:
content:
application/json:
schema:
- $ref: '#/components/schemas/conferenceRecordingMetadata'
+ $ref: "#/components/schemas/conferenceRecordingMetadata"
description: OK
voiceBadRequestError:
content:
application/json:
examples:
badRequestErrorExample:
- $ref: '#/components/examples/voiceBadRequestErrorExample'
+ $ref: "#/components/examples/voiceBadRequestErrorExample"
schema:
- $ref: '#/components/schemas/voiceApiError'
+ $ref: "#/components/schemas/voiceApiError"
description: Bad Request
voiceUnauthorizedError:
content:
application/json:
examples:
unauthorizedErrorExample:
- $ref: '#/components/examples/voiceUnauthorizedErrorExample'
+ $ref: "#/components/examples/voiceUnauthorizedErrorExample"
schema:
- $ref: '#/components/schemas/voiceApiError'
+ $ref: "#/components/schemas/voiceApiError"
description: Unauthorized
voiceForbiddenError:
content:
application/json:
examples:
forbiddenErrorExample:
- $ref: '#/components/examples/voiceForbiddenErrorExample'
+ $ref: "#/components/examples/voiceForbiddenErrorExample"
schema:
- $ref: '#/components/schemas/voiceApiError'
+ $ref: "#/components/schemas/voiceApiError"
description: Forbidden
voiceNotFoundError:
content:
application/json:
examples:
notFoundErrorExample:
- $ref: '#/components/examples/voiceNotFoundErrorExample'
+ $ref: "#/components/examples/voiceNotFoundErrorExample"
schema:
- $ref: '#/components/schemas/voiceApiError'
+ $ref: "#/components/schemas/voiceApiError"
description: Not Found
voiceNotAllowedError:
content:
application/json:
examples:
notAllowedErrorExample:
- $ref: '#/components/examples/voiceNotAllowedErrorExample'
+ $ref: "#/components/examples/voiceNotAllowedErrorExample"
schema:
- $ref: '#/components/schemas/voiceApiError'
+ $ref: "#/components/schemas/voiceApiError"
description: Method Not Allowed
voiceConflictError:
content:
application/json:
examples:
conflictErrorExample:
- $ref: '#/components/examples/voiceConflictErrorExample'
+ $ref: "#/components/examples/voiceConflictErrorExample"
schema:
- $ref: '#/components/schemas/voiceApiError'
+ $ref: "#/components/schemas/voiceApiError"
description: Conflict
voiceUnsupportedMediaTypeError:
content:
application/json:
examples:
tooManyRequestsErrorExample:
- $ref: '#/components/examples/voiceUnsupportedMediaTypeErrorExample'
+ $ref: "#/components/examples/voiceUnsupportedMediaTypeErrorExample"
schema:
- $ref: '#/components/schemas/voiceApiError'
+ $ref: "#/components/schemas/voiceApiError"
description: Unsupported Media Type
voiceTooManyRequestsError:
content:
application/json:
examples:
tooManyRequestsErrorExample:
- $ref: '#/components/examples/voiceTooManyRequestsErrorExample'
+ $ref: "#/components/examples/voiceTooManyRequestsErrorExample"
schema:
- $ref: '#/components/schemas/voiceApiError'
+ $ref: "#/components/schemas/voiceApiError"
description: Too Many Requests
headers:
Retry-After:
@@ -7632,85 +7633,85 @@ components:
application/json:
examples:
internalServerErrorExample:
- $ref: '#/components/examples/voiceInternalServerErrorExample'
+ $ref: "#/components/examples/voiceInternalServerErrorExample"
schema:
- $ref: '#/components/schemas/voiceApiError'
+ $ref: "#/components/schemas/voiceApiError"
description: Internal Server Error
voiceCodeResponse:
content:
application/json:
schema:
- $ref: '#/components/schemas/voiceCodeResponse'
+ $ref: "#/components/schemas/voiceCodeResponse"
description: OK
messagingCodeResponse:
content:
application/json:
schema:
- $ref: '#/components/schemas/messagingCodeResponse'
+ $ref: "#/components/schemas/messagingCodeResponse"
description: OK
verifyCodeResponse:
content:
application/json:
schema:
- $ref: '#/components/schemas/verifyCodeResponse'
+ $ref: "#/components/schemas/verifyCodeResponse"
description: OK
mfaBadRequestError:
content:
application/json:
schema:
- $ref: '#/components/schemas/mfaRequestError'
+ $ref: "#/components/schemas/mfaRequestError"
description: Bad Request
mfaUnauthorizedError:
content:
application/json:
schema:
- $ref: '#/components/schemas/mfaUnauthorizedRequestError'
+ $ref: "#/components/schemas/mfaUnauthorizedRequestError"
description: Unauthorized
mfaForbiddenError:
content:
application/json:
schema:
- $ref: '#/components/schemas/mfaForbiddenRequestError'
+ $ref: "#/components/schemas/mfaForbiddenRequestError"
description: Forbidden
mfaTooManyRequestsError:
content:
application/json:
schema:
- $ref: '#/components/schemas/mfaRequestError'
+ $ref: "#/components/schemas/mfaRequestError"
description: Too Many Requests
mfaInternalServerError:
content:
application/json:
schema:
- $ref: '#/components/schemas/mfaRequestError'
+ $ref: "#/components/schemas/mfaRequestError"
description: Internal Server Error
createLookupResponse:
content:
application/json:
examples:
lookupResponseExample:
- $ref: '#/components/examples/lookupInProgressExample'
+ $ref: "#/components/examples/lookupInProgressExample"
schema:
- $ref: '#/components/schemas/createLookupResponse'
+ $ref: "#/components/schemas/createLookupResponse"
description: Accepted
getLookupResponse:
content:
application/json:
examples:
lookupInProgressExample:
- $ref: '#/components/examples/lookupInProgressExample'
+ $ref: "#/components/examples/lookupInProgressExample"
lookupFailedExample:
- $ref: '#/components/examples/lookupFailedExample'
+ $ref: "#/components/examples/lookupFailedExample"
lookupSingleNumberCompleteExample:
- $ref: '#/components/examples/lookupSingleNumberCompleteExample'
+ $ref: "#/components/examples/lookupSingleNumberCompleteExample"
lookupMultipleNumbersCompleteExample:
- $ref: '#/components/examples/lookupMultipleNumbersCompleteExample'
+ $ref: "#/components/examples/lookupMultipleNumbersCompleteExample"
lookupMultipleNumbersPartialCompleteExample:
- $ref: '#/components/examples/lookupMultipleNumbersPartialCompleteExample'
+ $ref: "#/components/examples/lookupMultipleNumbersPartialCompleteExample"
lookupSingleNumberCompleteNoInfoExample:
- $ref: '#/components/examples/lookupSingleNumberCompleteNoInfoExample'
+ $ref: "#/components/examples/lookupSingleNumberCompleteNoInfoExample"
schema:
- $ref: '#/components/schemas/lookupStatus'
+ $ref: "#/components/schemas/lookupStatus"
description: OK
tnLookupBadRequestError:
content:
@@ -7721,7 +7722,7 @@ components:
value:
message: "Some tns do not match e164 format: 1234"
schema:
- $ref: '#/components/schemas/tnLookupRequestError'
+ $ref: "#/components/schemas/tnLookupRequestError"
description: Bad Request
tnLookupUnauthorizedError:
content:
@@ -7732,7 +7733,7 @@ components:
value:
message: Unauthorized
schema:
- $ref: '#/components/schemas/tnLookupRequestError'
+ $ref: "#/components/schemas/tnLookupRequestError"
description: Unauthorized
tnLookupForbiddenError:
content:
@@ -7747,7 +7748,7 @@ components:
of either a 'X-Amz-Date' or a 'Date' header. Authorization=Basic
Y2tvZloPTGhHgywYIzGlcGVlcGvvcGovYTIGIt=='
schema:
- $ref: '#/components/schemas/tnLookupRequestError'
+ $ref: "#/components/schemas/tnLookupRequestError"
description: Forbidden
tnLookupMediaTypeError:
content:
@@ -7758,7 +7759,7 @@ components:
value:
message: Content-Type must be application/json.
schema:
- $ref: '#/components/schemas/tnLookupRequestError'
+ $ref: "#/components/schemas/tnLookupRequestError"
description: Unsupported Media Type
tnLookupNotFoundError:
description: Not Found
@@ -7771,7 +7772,7 @@ components:
value:
message: Too many requests.
schema:
- $ref: '#/components/schemas/tnLookupRequestError'
+ $ref: "#/components/schemas/tnLookupRequestError"
description: Too Many Requests
tnLookupInternalServerError:
content:
@@ -7782,37 +7783,37 @@ components:
value:
message: Request has not been passed further.
schema:
- $ref: '#/components/schemas/tnLookupRequestError'
+ $ref: "#/components/schemas/tnLookupRequestError"
description: Internal Server Error
getTollFreeVerificationStatusResponse:
content:
application/json:
schema:
- $ref: '#/components/schemas/tfvStatus'
+ $ref: "#/components/schemas/tfvStatus"
description: OK
listWebhookSubscriptionsResponse:
content:
application/json:
schema:
- $ref: '#/components/schemas/webhookSubscriptionsListBody'
+ $ref: "#/components/schemas/webhookSubscriptionsListBody"
description: OK
createWebhookSubscriptionResponse:
content:
application/json:
schema:
- $ref: '#/components/schemas/webhookSubscription'
+ $ref: "#/components/schemas/webhookSubscription"
description: Created
updateWebhookSubscriptionResponse:
content:
application/json:
schema:
- $ref: '#/components/schemas/webhookSubscription'
+ $ref: "#/components/schemas/webhookSubscription"
description: OK
listTollFreeUseCasesResponse:
content:
application/json:
schema:
- $ref: '#/components/schemas/useCases'
+ $ref: "#/components/schemas/useCases"
description: OK
tfvBadRequestResponse:
content:
@@ -7821,7 +7822,7 @@ components:
description: Cannot process request.
type: bad request
schema:
- $ref: '#/components/schemas/tfvError'
+ $ref: "#/components/schemas/tfvError"
description: Bad Request
noContentResponse:
description: No Content
@@ -7835,7 +7836,7 @@ components:
businessContactEmail: Business contact email is not a valid email address.
optInWorkflowImageURLs: Entries must be a valid array of objects.
schema:
- $ref: '#/components/schemas/tfvError'
+ $ref: "#/components/schemas/tfvError"
description: Bad Request
tfvUnauthorizedResponse:
content:
@@ -7844,7 +7845,7 @@ components:
description: Client is providing incorrect or invalid credentials.
type: unauthorized
schema:
- $ref: '#/components/schemas/tfvError'
+ $ref: "#/components/schemas/tfvError"
description: Unauthorized
tfvForbiddenResponse:
content:
@@ -7853,7 +7854,7 @@ components:
description: Client is not authorized for the action.
type: forbidden
schema:
- $ref: '#/components/schemas/tfvError'
+ $ref: "#/components/schemas/tfvError"
description: Forbidden
tfvNotFoundResponse:
content:
@@ -7862,7 +7863,7 @@ components:
description: Cannot find the requested resource.
type: Not Found
schema:
- $ref: '#/components/schemas/tfvError'
+ $ref: "#/components/schemas/tfvError"
description: Cannot find the requested resource.
tfvNotAllowedResponse:
content:
@@ -7871,7 +7872,7 @@ components:
description: Method is not allowed.
type: Method Not Allowed
schema:
- $ref: '#/components/schemas/tfvError'
+ $ref: "#/components/schemas/tfvError"
description: Method Not Allowed
tfvTooManyRequestsResponse:
content:
@@ -7880,7 +7881,7 @@ components:
description: Throttling error. Too many requests.
type: Too Many Requests
schema:
- $ref: '#/components/schemas/tfvError'
+ $ref: "#/components/schemas/tfvError"
description: Too Many Requests
tfvServerErrorResponse:
content:
@@ -7889,7 +7890,7 @@ components:
description: Internal Server Error.
type: Internal Server Error
schema:
- $ref: '#/components/schemas/tfvError'
+ $ref: "#/components/schemas/tfvError"
description: Internal Server Error
tfvServiceUnavailableResponse:
content:
@@ -7898,7 +7899,7 @@ components:
description: Service Unavailable Error.
type: Service Unavailable
schema:
- $ref: '#/components/schemas/tfvError'
+ $ref: "#/components/schemas/tfvError"
description: Service Unavailable
schemas:
applicationId:
@@ -8043,10 +8044,10 @@ components:
example: 100
type: integer
pageInfo:
- $ref: '#/components/schemas/pageInfo'
+ $ref: "#/components/schemas/pageInfo"
messages:
items:
- $ref: '#/components/schemas/listMessageItem'
+ $ref: "#/components/schemas/listMessageItem"
type: array
title: MessagesList
type: object
@@ -8093,11 +8094,11 @@ components:
example: "+15554442222"
type: string
messageStatus:
- $ref: '#/components/schemas/messageStatusEnum'
+ $ref: "#/components/schemas/messageStatusEnum"
messageDirection:
- $ref: '#/components/schemas/listMessageDirectionEnum'
+ $ref: "#/components/schemas/listMessageDirectionEnum"
messageType:
- $ref: '#/components/schemas/messageTypeEnum'
+ $ref: "#/components/schemas/messageTypeEnum"
segmentCount:
description: The number of segments the user's message is broken into before
sending over carrier networks.
@@ -8239,7 +8240,7 @@ components:
type: string
fieldErrors:
items:
- $ref: '#/components/schemas/fieldError'
+ $ref: "#/components/schemas/fieldError"
type: array
required:
- description
@@ -8330,7 +8331,7 @@ components:
example: 1
type: integer
direction:
- $ref: '#/components/schemas/messageDirectionEnum'
+ $ref: "#/components/schemas/messageDirectionEnum"
to:
description: The phone number recipients of the message.
example:
@@ -8365,7 +8366,7 @@ components:
title: Tag
type: string
priority:
- $ref: '#/components/schemas/priorityEnum'
+ $ref: "#/components/schemas/priorityEnum"
expiration:
description: "A string with the date/time value that the message will automatically\
\ expire by. This must be a valid RFC-3339 value, e.g., 2021-03-14T01:59:26Z\
@@ -8426,7 +8427,7 @@ components:
title: Tag
type: string
priority:
- $ref: '#/components/schemas/priorityEnum'
+ $ref: "#/components/schemas/priorityEnum"
expiration:
description: "A string with the date/time value that the message will automatically\
\ expire by. This must be a valid RFC-3339 value, e.g., 2021-03-14T01:59:26Z\
@@ -8583,14 +8584,14 @@ components:
links:
example: []
items:
- $ref: '#/components/schemas/link'
+ $ref: "#/components/schemas/link"
type: array
data:
- $ref: '#/components/schemas/multiChannelMessageResponseData'
+ $ref: "#/components/schemas/multiChannelMessageResponseData"
errors:
example: []
items:
- $ref: '#/components/schemas/errorObject'
+ $ref: "#/components/schemas/errorObject"
type: array
type: object
multiChannelError:
@@ -8616,7 +8617,7 @@ components:
links:
example: []
items:
- $ref: '#/components/schemas/link'
+ $ref: "#/components/schemas/link"
type: array
data:
nullable: true
@@ -8624,7 +8625,7 @@ components:
example: null
errors:
items:
- $ref: '#/components/schemas/errorObject'
+ $ref: "#/components/schemas/errorObject"
type: array
type: object
link:
@@ -8651,7 +8652,7 @@ components:
description: A detailed explanation of the error.
type: string
source:
- $ref: '#/components/schemas/errorSource'
+ $ref: "#/components/schemas/errorSource"
required:
- description
- source
@@ -8738,7 +8739,7 @@ components:
suggestions:
description: An array of suggested actions for the recipient.
items:
- $ref: '#/components/schemas/multiChannelAction'
+ $ref: "#/components/schemas/multiChannelAction"
maxItems: 11
type: array
required:
@@ -8790,11 +8791,11 @@ components:
rbmMessageMedia:
properties:
media:
- $ref: '#/components/schemas/rbmMessageContentFile'
+ $ref: "#/components/schemas/rbmMessageContentFile"
suggestions:
description: An array of suggested actions for the recipient.
items:
- $ref: '#/components/schemas/multiChannelAction'
+ $ref: "#/components/schemas/multiChannelAction"
maxItems: 11
type: array
required:
@@ -8814,27 +8815,27 @@ components:
maxLength: 2000
type: string
media:
- $ref: '#/components/schemas/rbmCardContent_media'
+ $ref: "#/components/schemas/rbmCardContent_media"
suggestions:
description: An array of suggested actions for the recipient that will be
displayed on the rich card.
items:
- $ref: '#/components/schemas/multiChannelAction'
+ $ref: "#/components/schemas/multiChannelAction"
maxItems: 4
type: array
type: object
rbmStandaloneCard:
properties:
orientation:
- $ref: '#/components/schemas/standaloneCardOrientationEnum'
+ $ref: "#/components/schemas/standaloneCardOrientationEnum"
thumbnailImageAlignment:
- $ref: '#/components/schemas/thumbnailAlignmentEnum'
+ $ref: "#/components/schemas/thumbnailAlignmentEnum"
cardContent:
- $ref: '#/components/schemas/rbmCardContent'
+ $ref: "#/components/schemas/rbmCardContent"
suggestions:
description: An array of suggested actions for the recipient.
items:
- $ref: '#/components/schemas/multiChannelAction'
+ $ref: "#/components/schemas/multiChannelAction"
maxItems: 11
type: array
required:
@@ -8860,16 +8861,16 @@ components:
rbmMessageCarouselCard:
properties:
cardWidth:
- $ref: '#/components/schemas/cardWidthEnum'
+ $ref: "#/components/schemas/cardWidthEnum"
cardContents:
items:
- $ref: '#/components/schemas/rbmCardContent'
+ $ref: "#/components/schemas/rbmCardContent"
maxItems: 10
type: array
suggestions:
description: An array of suggested actions for the recipient.
items:
- $ref: '#/components/schemas/multiChannelAction'
+ $ref: "#/components/schemas/multiChannelAction"
maxItems: 11
type: array
required:
@@ -8905,14 +8906,14 @@ components:
type: string
media:
items:
- $ref: '#/components/schemas/mmsMessageContentFile'
+ $ref: "#/components/schemas/mmsMessageContentFile"
type: array
title: MMS Message
type: object
rbmMessageContentRichCard:
oneOf:
- - $ref: '#/components/schemas/rbmStandaloneCard'
- - $ref: '#/components/schemas/rbmMessageCarouselCard'
+ - $ref: "#/components/schemas/rbmStandaloneCard"
+ - $ref: "#/components/schemas/rbmMessageCarouselCard"
title: RBM Rich Card
rbmActionTypeEnum:
enum:
@@ -8946,7 +8947,7 @@ components:
type: REPLY
properties:
type:
- $ref: '#/components/schemas/rbmActionTypeEnum'
+ $ref: "#/components/schemas/rbmActionTypeEnum"
text:
description: Displayed text for user to click
example: Hello world
@@ -8968,7 +8969,7 @@ components:
type: object
rbmActionDial:
allOf:
- - $ref: '#/components/schemas/rbmActionBase'
+ - $ref: "#/components/schemas/rbmActionBase"
- properties:
phoneNumber:
description: The phone number to dial. Must be E164 format.
@@ -8980,7 +8981,7 @@ components:
type: object
rbmActionViewLocation:
allOf:
- - $ref: '#/components/schemas/rbmActionBase'
+ - $ref: "#/components/schemas/rbmActionBase"
- properties:
latitude:
description: The latitude of the location.
@@ -9004,7 +9005,7 @@ components:
type: object
multiChannelActionCalendarEvent:
allOf:
- - $ref: '#/components/schemas/rbmActionBase'
+ - $ref: "#/components/schemas/rbmActionBase"
- properties:
title:
description: The title of the event.
@@ -9034,7 +9035,7 @@ components:
type: object
rbmActionOpenUrl:
allOf:
- - $ref: '#/components/schemas/rbmActionBase'
+ - $ref: "#/components/schemas/rbmActionBase"
- properties:
url:
description: The URL to open in browser.
@@ -9049,25 +9050,25 @@ components:
multiChannelFullActions:
description: An array of suggested actions for the recipient.
items:
- $ref: '#/components/schemas/multiChannelAction'
+ $ref: "#/components/schemas/multiChannelAction"
maxItems: 11
type: array
multiChannelAction:
discriminator:
mapping:
- REPLY: '#/components/schemas/rbmActionBase'
- DIAL_PHONE: '#/components/schemas/rbmActionDial'
- SHOW_LOCATION: '#/components/schemas/rbmActionViewLocation'
- CREATE_CALENDAR_EVENT: '#/components/schemas/multiChannelActionCalendarEvent'
- OPEN_URL: '#/components/schemas/rbmActionOpenUrl'
- REQUEST_LOCATION: '#/components/schemas/rbmActionBase'
+ REPLY: "#/components/schemas/rbmActionBase"
+ DIAL_PHONE: "#/components/schemas/rbmActionDial"
+ SHOW_LOCATION: "#/components/schemas/rbmActionViewLocation"
+ CREATE_CALENDAR_EVENT: "#/components/schemas/multiChannelActionCalendarEvent"
+ OPEN_URL: "#/components/schemas/rbmActionOpenUrl"
+ REQUEST_LOCATION: "#/components/schemas/rbmActionBase"
propertyName: type
oneOf:
- - $ref: '#/components/schemas/rbmActionBase'
- - $ref: '#/components/schemas/rbmActionDial'
- - $ref: '#/components/schemas/rbmActionViewLocation'
- - $ref: '#/components/schemas/multiChannelActionCalendarEvent'
- - $ref: '#/components/schemas/rbmActionOpenUrl'
+ - $ref: "#/components/schemas/rbmActionBase"
+ - $ref: "#/components/schemas/rbmActionDial"
+ - $ref: "#/components/schemas/rbmActionViewLocation"
+ - $ref: "#/components/schemas/multiChannelActionCalendarEvent"
+ - $ref: "#/components/schemas/rbmActionOpenUrl"
multiChannelChannelListObject:
properties:
from:
@@ -9081,9 +9082,9 @@ components:
example: 93de2206-9669-4e07-948d-329f4b722ee2
type: string
channel:
- $ref: '#/components/schemas/multiChannelMessageChannelEnum'
+ $ref: "#/components/schemas/multiChannelMessageChannelEnum"
content:
- $ref: '#/components/schemas/multiChannelChannelListObject_content'
+ $ref: "#/components/schemas/multiChannelChannelListObject_content"
required:
- applicationId
- channel
@@ -9102,7 +9103,7 @@ components:
\ the order they are listed. Once a message sends successfully, the others\
\ will be ignored."
items:
- $ref: '#/components/schemas/multiChannelChannelListObject'
+ $ref: "#/components/schemas/multiChannelChannelListObject"
maxItems: 4
type: array
tag:
@@ -9112,7 +9113,7 @@ components:
title: Tag
type: string
priority:
- $ref: '#/components/schemas/priorityEnum'
+ $ref: "#/components/schemas/priorityEnum"
expiration:
description: "A string with the date/time value that the message will automatically\
\ expire by. This must be a valid RFC-3339 value, e.g., 2021-03-14T01:59:26Z\
@@ -9255,7 +9256,7 @@ components:
format: date-time
type: string
direction:
- $ref: '#/components/schemas/messageDirectionEnum'
+ $ref: "#/components/schemas/messageDirectionEnum"
to:
description: "The destination phone number(s) of the message, in E164 format."
example:
@@ -9269,7 +9270,7 @@ components:
\ the order they are listed. Once a message sends successfully, the others\
\ will be ignored."
items:
- $ref: '#/components/schemas/multiChannelMessageResponseData_channelList_inner'
+ $ref: "#/components/schemas/multiChannelMessageResponseData_channelList_inner"
maxItems: 4
type: array
tag:
@@ -9279,7 +9280,7 @@ components:
title: Tag
type: string
priority:
- $ref: '#/components/schemas/priorityEnum'
+ $ref: "#/components/schemas/priorityEnum"
expiration:
description: "A string with the date/time value that the message will automatically\
\ expire by. This must be a valid RFC-3339 value, e.g., 2021-03-14T01:59:26Z\
@@ -9300,7 +9301,7 @@ components:
text:
type: string
media:
- $ref: '#/components/schemas/rbmMessageContentFile'
+ $ref: "#/components/schemas/rbmMessageContentFile"
type: object
rbmSuggestionResponse:
properties:
@@ -9337,17 +9338,17 @@ components:
- `inboundCallback` indicates an inbound MO message or a multichannel message client's response to a suggestion or location request.
discriminator:
mapping:
- message-sent: '#/components/schemas/statusCallback'
- message-delivered: '#/components/schemas/statusCallback'
- message-failed: '#/components/schemas/statusCallback'
- message-read: '#/components/schemas/statusCallback'
- message-received: '#/components/schemas/inboundCallback'
- request-location-response: '#/components/schemas/inboundCallback'
- suggestion-response: '#/components/schemas/inboundCallback'
+ message-sent: "#/components/schemas/statusCallback"
+ message-delivered: "#/components/schemas/statusCallback"
+ message-failed: "#/components/schemas/statusCallback"
+ message-read: "#/components/schemas/statusCallback"
+ message-received: "#/components/schemas/inboundCallback"
+ request-location-response: "#/components/schemas/inboundCallback"
+ suggestion-response: "#/components/schemas/inboundCallback"
propertyName: type
oneOf:
- - $ref: '#/components/schemas/statusCallback'
- - $ref: '#/components/schemas/inboundCallback'
+ - $ref: "#/components/schemas/statusCallback"
+ - $ref: "#/components/schemas/inboundCallback"
type: object
statusCallback:
description: Represents a status callback for an outbound MT SMS or MMS or RBM
@@ -9364,7 +9365,7 @@ components:
format: date-time
type: string
type:
- $ref: '#/components/schemas/statusCallbackTypeEnum'
+ $ref: "#/components/schemas/statusCallbackTypeEnum"
to:
description: |-
The destination phone number the message was sent to.
@@ -9376,7 +9377,7 @@ components:
example: Message delivered to carrier.
type: string
message:
- $ref: '#/components/schemas/statusCallbackMessage'
+ $ref: "#/components/schemas/statusCallbackMessage"
errorCode:
description: "Optional error code, applicable only when type is `message-failed`."
example: 4405
@@ -9403,7 +9404,7 @@ components:
format: date-time
type: string
type:
- $ref: '#/components/schemas/inboundCallbackTypeEnum'
+ $ref: "#/components/schemas/inboundCallbackTypeEnum"
to:
description: "The destination phone number the message was sent to. \nFor\
\ inbound callbacks, this is the Bandwidth number or alphanumeric identifier\
@@ -9415,7 +9416,7 @@ components:
example: Incoming message received
type: string
message:
- $ref: '#/components/schemas/inboundCallbackMessage'
+ $ref: "#/components/schemas/inboundCallbackMessage"
carrierName:
description: "The name of the Authorized Message Provider (AMP) that handled\
\ this message. \nIn the US, this is the carrier that the message was\
@@ -9485,7 +9486,7 @@ components:
example: 1
type: integer
direction:
- $ref: '#/components/schemas/messageDirectionEnum'
+ $ref: "#/components/schemas/messageDirectionEnum"
to:
description: The phone number recipients of the message.
example:
@@ -9518,9 +9519,9 @@ components:
type: string
type: array
priority:
- $ref: '#/components/schemas/priorityEnum'
+ $ref: "#/components/schemas/priorityEnum"
channel:
- $ref: '#/components/schemas/multiChannelMessageChannelEnum'
+ $ref: "#/components/schemas/multiChannelMessageChannelEnum"
required:
- applicationId
- direction
@@ -9533,14 +9534,14 @@ components:
type: object
inboundCallbackMessage:
allOf:
- - $ref: '#/components/schemas/statusCallbackMessage'
+ - $ref: "#/components/schemas/statusCallbackMessage"
- properties:
content:
- $ref: '#/components/schemas/multiChannelMessageContent'
+ $ref: "#/components/schemas/multiChannelMessageContent"
suggestionResponse:
- $ref: '#/components/schemas/rbmSuggestionResponse'
+ $ref: "#/components/schemas/rbmSuggestionResponse"
locationResponse:
- $ref: '#/components/schemas/rbmLocationResponse'
+ $ref: "#/components/schemas/rbmLocationResponse"
type: object
required:
- applicationId
@@ -9704,7 +9705,7 @@ components:
maxLength: 2048
type: string
answerMethod:
- $ref: '#/components/schemas/callbackMethodEnum'
+ $ref: "#/components/schemas/callbackMethodEnum"
username:
description: Basic auth username.
example: mySecretUsername
@@ -9729,7 +9730,7 @@ components:
nullable: true
type: string
answerFallbackMethod:
- $ref: '#/components/schemas/callbackMethodEnum'
+ $ref: "#/components/schemas/callbackMethodEnum"
fallbackUsername:
description: Basic auth username.
example: mySecretUsername
@@ -9751,7 +9752,7 @@ components:
nullable: true
type: string
disconnectMethod:
- $ref: '#/components/schemas/callbackMethodEnum'
+ $ref: "#/components/schemas/callbackMethodEnum"
callTimeout:
default: 30
description: |-
@@ -9778,7 +9779,7 @@ components:
nullable: true
type: number
machineDetection:
- $ref: '#/components/schemas/machineDetectionConfiguration'
+ $ref: "#/components/schemas/machineDetectionConfiguration"
priority:
default: 5
description: |-
@@ -9885,14 +9886,14 @@ components:
nullable: true
type: string
answerMethod:
- $ref: '#/components/schemas/callbackMethodEnum'
+ $ref: "#/components/schemas/callbackMethodEnum"
answerUrl:
description: URL to deliver the `answer` event webhook.
example: https://myServer.example/bandwidth/webhooks/answer
format: uri
type: string
answerFallbackMethod:
- $ref: '#/components/schemas/callbackMethodEnum'
+ $ref: "#/components/schemas/callbackMethodEnum"
answerFallbackUrl:
description: Fallback URL to deliver the `answer` event webhook.
example: https://myFallbackServer.example/bandwidth/webhooks/answer
@@ -9900,7 +9901,7 @@ components:
nullable: true
type: string
disconnectMethod:
- $ref: '#/components/schemas/callbackMethodEnum'
+ $ref: "#/components/schemas/callbackMethodEnum"
disconnectUrl:
description: URL to deliver the `disconnect` event webhook.
example: https://myServer.example/bandwidth/webhooks/disconnect
@@ -10000,7 +10001,7 @@ components:
example: "+19195554321"
type: string
direction:
- $ref: '#/components/schemas/callDirectionEnum'
+ $ref: "#/components/schemas/callDirectionEnum"
state:
description: |-
The current state of the call. Current possible values are
@@ -10107,7 +10108,7 @@ components:
updateCall:
properties:
state:
- $ref: '#/components/schemas/callStateEnum'
+ $ref: "#/components/schemas/callStateEnum"
redirectUrl:
description: |-
The URL to send the [Redirect](/docs/voice/bxml/redirect) event
@@ -10121,7 +10122,7 @@ components:
nullable: true
type: string
redirectMethod:
- $ref: '#/components/schemas/redirectMethodEnum'
+ $ref: "#/components/schemas/redirectMethodEnum"
username:
description: Basic auth username.
example: mySecretUsername
@@ -10143,7 +10144,7 @@ components:
nullable: true
type: string
redirectFallbackMethod:
- $ref: '#/components/schemas/redirectMethodEnum'
+ $ref: "#/components/schemas/redirectMethodEnum"
fallbackUsername:
description: Basic auth username.
example: mySecretUsername
@@ -10175,7 +10176,7 @@ components:
updateCallRecording:
properties:
state:
- $ref: '#/components/schemas/recordingStateEnum'
+ $ref: "#/components/schemas/recordingStateEnum"
required:
- state
type: object
@@ -10267,7 +10268,7 @@ components:
example: PT13.67S
type: string
direction:
- $ref: '#/components/schemas/callDirectionEnum'
+ $ref: "#/components/schemas/callDirectionEnum"
channels:
description: Always `1` for conference recordings; multi-channel recordings
are not supported on conferences.
@@ -10285,7 +10286,7 @@ components:
format: date-time
type: string
fileFormat:
- $ref: '#/components/schemas/fileFormatEnum'
+ $ref: "#/components/schemas/fileFormatEnum"
status:
description: "The current status of the process. For recording, current\
\ possible values are 'processing', 'partial', 'complete', 'deleted',\
@@ -10303,7 +10304,7 @@ components:
nullable: true
type: string
transcription:
- $ref: '#/components/schemas/recordingTranscriptionMetadata'
+ $ref: "#/components/schemas/recordingTranscriptionMetadata"
recordingName:
description: A name to identify this recording.
example: my-recording-name
@@ -10360,7 +10361,7 @@ components:
nullable: true
type: string
conferenceEventMethod:
- $ref: '#/components/schemas/callbackMethodEnum'
+ $ref: "#/components/schemas/callbackMethodEnum"
tag:
description: The custom string attached to the conference that will be sent
with callbacks.
@@ -10372,14 +10373,14 @@ components:
A list of active members of the conference. Omitted if this
is a response to the [Get Conferences endpoint](/apis/voice#tag/Conferences/operation/listConferences).
items:
- $ref: '#/components/schemas/conferenceMember'
+ $ref: "#/components/schemas/conferenceMember"
nullable: true
type: array
type: object
updateConference:
properties:
status:
- $ref: '#/components/schemas/conferenceStateEnum'
+ $ref: "#/components/schemas/conferenceStateEnum"
redirectUrl:
description: |-
The URL to send the [conferenceRedirect](/docs/voice/webhooks/conferenceRedirect)
@@ -10390,7 +10391,7 @@ components:
nullable: true
type: string
redirectMethod:
- $ref: '#/components/schemas/redirectMethodEnum'
+ $ref: "#/components/schemas/redirectMethodEnum"
username:
description: Basic auth username.
example: mySecretUsername
@@ -10413,7 +10414,7 @@ components:
nullable: true
type: string
redirectFallbackMethod:
- $ref: '#/components/schemas/redirectMethodEnum'
+ $ref: "#/components/schemas/redirectMethodEnum"
fallbackUsername:
description: Basic auth username.
example: mySecretUsername
@@ -10566,7 +10567,7 @@ components:
format: date-time
type: string
fileFormat:
- $ref: '#/components/schemas/fileFormatEnum'
+ $ref: "#/components/schemas/fileFormatEnum"
status:
description: "The current status of the process. For recording, current\
\ possible values are 'processing', 'partial', 'complete', 'deleted',\
@@ -10596,7 +10597,7 @@ components:
\ need more information."
properties:
mode:
- $ref: '#/components/schemas/machineDetectionModeEnum'
+ $ref: "#/components/schemas/machineDetectionModeEnum"
detectionTimeout:
default: 15
description: |-
@@ -10663,7 +10664,7 @@ components:
nullable: true
type: string
callbackMethod:
- $ref: '#/components/schemas/callbackMethodEnum'
+ $ref: "#/components/schemas/callbackMethodEnum"
username:
description: Basic auth username.
example: mySecretUsername
@@ -10687,7 +10688,7 @@ components:
nullable: true
type: string
fallbackMethod:
- $ref: '#/components/schemas/callbackMethodEnum'
+ $ref: "#/components/schemas/callbackMethodEnum"
fallbackUsername:
description: Basic auth username.
example: mySecretUsername
@@ -10713,7 +10714,7 @@ components:
format: uri
type: string
callbackMethod:
- $ref: '#/components/schemas/callbackMethodEnum'
+ $ref: "#/components/schemas/callbackMethodEnum"
username:
description: Basic auth username.
example: mySecretUsername
@@ -10764,7 +10765,7 @@ components:
properties:
transcripts:
items:
- $ref: '#/components/schemas/transcription'
+ $ref: "#/components/schemas/transcription"
type: array
type: object
callTranscriptionMetadataList:
@@ -10773,7 +10774,7 @@ components:
transcriptionName: live_transcription
transcriptionUrl: https://voice.bandwidth.com/api/v2/accounts/9900000/calls/c-fef240ff-5cfc9091-8069-4863-a8c0-a4dcbbf1f1a4/transcriptions/t-3f758f24-c7a2fc78-7c91-401a-8b2e-e542f9c40d6b
items:
- $ref: '#/components/schemas/callTranscriptionMetadata'
+ $ref: "#/components/schemas/callTranscriptionMetadata"
type: array
callTranscriptionMetadata:
properties:
@@ -10823,15 +10824,15 @@ components:
transcript: Hello World! This is an example.
confidence: 0.9
items:
- $ref: '#/components/schemas/callTranscription'
+ $ref: "#/components/schemas/callTranscription"
type: array
type: object
callTranscription:
properties:
detectedLanguage:
- $ref: '#/components/schemas/callTranscriptionDetectedLanguageEnum'
+ $ref: "#/components/schemas/callTranscriptionDetectedLanguageEnum"
track:
- $ref: '#/components/schemas/callTranscriptionTrackEnum'
+ $ref: "#/components/schemas/callTranscriptionTrackEnum"
transcript:
description: The transcription itself.
example: Hello World! This is an example.
@@ -10931,7 +10932,7 @@ components:
example: "+15555555555"
type: string
direction:
- $ref: '#/components/schemas/callDirectionEnum'
+ $ref: "#/components/schemas/callDirectionEnum"
callId:
description: The call id associated with the event.
example: c-15ac29a2-1331029c-2cb0-4a07-b215-b22865662d85
@@ -10966,7 +10967,7 @@ components:
nullable: true
type: string
machineDetectionResult:
- $ref: '#/components/schemas/machineDetectionResult'
+ $ref: "#/components/schemas/machineDetectionResult"
type: object
bridgeCompleteCallback:
description: "If the target call leaves the ApiClient class. ApiException class.
*/
- public okhttp3.Call createCallCall(String accountId, CreateCall createCall, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call createCallCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CreateCall createCall, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://voice.bandwidth.com/api/v2" };
@@ -140,12 +140,12 @@ public okhttp3.Call createCallCall(String accountId, CreateCall createCall, fina
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call createCallValidateBeforeCall(String accountId, CreateCall createCall, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call createCallValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CreateCall createCall, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling createCall(Async)");
@@ -182,7 +182,7 @@ private okhttp3.Call createCallValidateBeforeCall(String accountId, CreateCall c
500 Internal Server Error -
*/
- public CreateCallResponse createCall(String accountId, CreateCall createCall) throws ApiException {
+ public CreateCallResponse createCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CreateCall createCall) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call createCallAsync(String accountId, CreateCall createCall, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call getCallStateCall(String accountId, String callId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call getCallStateCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://voice.bandwidth.com/api/v2" };
@@ -309,12 +309,12 @@ public okhttp3.Call getCallStateCall(String accountId, String callId, final ApiC
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call getCallStateValidateBeforeCall(String accountId, String callId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call getCallStateValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling getCallState(Async)");
@@ -351,7 +351,7 @@ private okhttp3.Call getCallStateValidateBeforeCall(String accountId, String cal
500 Internal Server Error -
*/
- public CallState getCallState(String accountId, String callId) throws ApiException {
+ public CallState getCallState(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call getCallStateAsync(String accountId, String callId, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call listCallsCall(String accountId, String to, String from, String minStartTime, String maxStartTime, String disconnectCause, Integer pageSize, String pageToken, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call listCallsCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String to, @javax.annotation.Nullable String from, @javax.annotation.Nullable String minStartTime, @javax.annotation.Nullable String maxStartTime, @javax.annotation.Nullable String disconnectCause, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String pageToken, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://voice.bandwidth.com/api/v2" };
@@ -511,12 +511,12 @@ public okhttp3.Call listCallsCall(String accountId, String to, String from, Stri
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call listCallsValidateBeforeCall(String accountId, String to, String from, String minStartTime, String maxStartTime, String disconnectCause, Integer pageSize, String pageToken, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call listCallsValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String to, @javax.annotation.Nullable String from, @javax.annotation.Nullable String minStartTime, @javax.annotation.Nullable String maxStartTime, @javax.annotation.Nullable String disconnectCause, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String pageToken, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling listCalls(Async)");
@@ -554,7 +554,7 @@ private okhttp3.Call listCallsValidateBeforeCall(String accountId, String to, St
500 Internal Server Error -
*/
- public List 500 Internal Server Error - > localVarResp = listCallsWithHttpInfo(accountId, to, from, minStartTime, maxStartTime, disconnectCause, pageSize, pageToken);
return localVarResp.getData();
}
@@ -587,7 +587,7 @@ public List
*/
- public ApiResponse 500 Internal Server Error - > listCallsWithHttpInfo(String accountId, String to, String from, String minStartTime, String maxStartTime, String disconnectCause, Integer pageSize, String pageToken) throws ApiException {
+ public ApiResponse
> listCallsWithHttpInfo(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String to, @javax.annotation.Nullable String from, @javax.annotation.Nullable String minStartTime, @javax.annotation.Nullable String maxStartTime, @javax.annotation.Nullable String disconnectCause, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String pageToken) throws ApiException {
okhttp3.Call localVarCall = listCallsValidateBeforeCall(accountId, to, from, minStartTime, maxStartTime, disconnectCause, pageSize, pageToken, null);
Type localVarReturnType = new TypeToken
>(){}.getType();
return localVarApiClient.execute(localVarCall, localVarReturnType);
@@ -622,7 +622,7 @@ public ApiResponse
> listCallsWithHttpInfo(String accountId, Stri
*/
- public okhttp3.Call listCallsAsync(String accountId, String to, String from, String minStartTime, String maxStartTime, String disconnectCause, Integer pageSize, String pageToken, final ApiCallback 500 Internal Server Error - > _callback) throws ApiException {
+ public okhttp3.Call listCallsAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String to, @javax.annotation.Nullable String from, @javax.annotation.Nullable String minStartTime, @javax.annotation.Nullable String maxStartTime, @javax.annotation.Nullable String disconnectCause, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String pageToken, final ApiCallback
> _callback) throws ApiException {
okhttp3.Call localVarCall = listCallsValidateBeforeCall(accountId, to, from, minStartTime, maxStartTime, disconnectCause, pageSize, pageToken, _callback);
Type localVarReturnType = new TypeToken
>(){}.getType();
@@ -653,7 +653,7 @@ public okhttp3.Call listCallsAsync(String accountId, String to, String from, Str
*/
- public okhttp3.Call updateCallCall(String accountId, String callId, UpdateCall updateCall, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call updateCallCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, @javax.annotation.Nonnull UpdateCall updateCall, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://voice.bandwidth.com/api/v2" };
@@ -696,12 +696,12 @@ public okhttp3.Call updateCallCall(String accountId, String callId, UpdateCall u
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call updateCallValidateBeforeCall(String accountId, String callId, UpdateCall updateCall, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call updateCallValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, @javax.annotation.Nonnull UpdateCall updateCall, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling updateCall(Async)");
@@ -744,7 +744,7 @@ private okhttp3.Call updateCallValidateBeforeCall(String accountId, String callI
500 Internal Server Error -
*/
- public void updateCall(String accountId, String callId, UpdateCall updateCall) throws ApiException {
+ public void updateCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, @javax.annotation.Nonnull UpdateCall updateCall) throws ApiException {
updateCallWithHttpInfo(accountId, callId, updateCall);
}
@@ -772,7 +772,7 @@ public void updateCall(String accountId, String callId, UpdateCall updateCall) t
500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call updateCallAsync(String accountId, String callId, UpdateCall updateCall, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call updateCallBxmlCall(String accountId, String callId, String body, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call updateCallBxmlCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, @javax.annotation.Nonnull String body, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://voice.bandwidth.com/api/v2" };
@@ -875,12 +875,12 @@ public okhttp3.Call updateCallBxmlCall(String accountId, String callId, String b
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call updateCallBxmlValidateBeforeCall(String accountId, String callId, String body, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call updateCallBxmlValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, @javax.annotation.Nonnull String body, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling updateCallBxml(Async)");
@@ -923,7 +923,7 @@ private okhttp3.Call updateCallBxmlValidateBeforeCall(String accountId, String c
500 Internal Server Error -
*/
- public void updateCallBxml(String accountId, String callId, String body) throws ApiException {
+ public void updateCallBxml(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, @javax.annotation.Nonnull String body) throws ApiException {
updateCallBxmlWithHttpInfo(accountId, callId, body);
}
@@ -951,7 +951,7 @@ public void updateCallBxml(String accountId, String callId, String body) throws
500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call updateCallBxmlAsync(String accountId, String callId, String body, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call downloadConferenceRecordingCall(String accountId, String conferenceId, String recordingId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call downloadConferenceRecordingCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String recordingId, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://voice.bandwidth.com/api/v2" };
@@ -146,12 +146,12 @@ public okhttp3.Call downloadConferenceRecordingCall(String accountId, String con
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call downloadConferenceRecordingValidateBeforeCall(String accountId, String conferenceId, String recordingId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call downloadConferenceRecordingValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String recordingId, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling downloadConferenceRecording(Async)");
@@ -194,7 +194,7 @@ private okhttp3.Call downloadConferenceRecordingValidateBeforeCall(String accoun
500 Internal Server Error -
*/
- public File downloadConferenceRecording(String accountId, String conferenceId, String recordingId) throws ApiException {
+ public File downloadConferenceRecording(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String recordingId) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call downloadConferenceRecordingAsync(String accountId, String conferenceId, String recordingId, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call getConferenceCall(String accountId, String conferenceId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call getConferenceCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://voice.bandwidth.com/api/v2" };
@@ -323,12 +323,12 @@ public okhttp3.Call getConferenceCall(String accountId, String conferenceId, fin
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call getConferenceValidateBeforeCall(String accountId, String conferenceId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call getConferenceValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling getConference(Async)");
@@ -365,7 +365,7 @@ private okhttp3.Call getConferenceValidateBeforeCall(String accountId, String co
500 Internal Server Error -
*/
- public Conference getConference(String accountId, String conferenceId) throws ApiException {
+ public Conference getConference(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call getConferenceAsync(String accountId, String conferenceId, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call getConferenceMemberCall(String accountId, String conferenceId, String memberId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call getConferenceMemberCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String memberId, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://voice.bandwidth.com/api/v2" };
@@ -494,12 +494,12 @@ public okhttp3.Call getConferenceMemberCall(String accountId, String conferenceI
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call getConferenceMemberValidateBeforeCall(String accountId, String conferenceId, String memberId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call getConferenceMemberValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String memberId, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling getConferenceMember(Async)");
@@ -542,7 +542,7 @@ private okhttp3.Call getConferenceMemberValidateBeforeCall(String accountId, Str
500 Internal Server Error -
*/
- public ConferenceMember getConferenceMember(String accountId, String conferenceId, String memberId) throws ApiException {
+ public ConferenceMember getConferenceMember(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String memberId) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call getConferenceMemberAsync(String accountId, String conferenceId, String memberId, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call getConferenceRecordingCall(String accountId, String conferenceId, String recordingId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call getConferenceRecordingCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String recordingId, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://voice.bandwidth.com/api/v2" };
@@ -673,12 +673,12 @@ public okhttp3.Call getConferenceRecordingCall(String accountId, String conferen
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call getConferenceRecordingValidateBeforeCall(String accountId, String conferenceId, String recordingId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call getConferenceRecordingValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String recordingId, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling getConferenceRecording(Async)");
@@ -721,7 +721,7 @@ private okhttp3.Call getConferenceRecordingValidateBeforeCall(String accountId,
500 Internal Server Error -
*/
- public ConferenceRecordingMetadata getConferenceRecording(String accountId, String conferenceId, String recordingId) throws ApiException {
+ public ConferenceRecordingMetadata getConferenceRecording(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String recordingId) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call getConferenceRecordingAsync(String accountId, String conferenceId, String recordingId, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call listConferenceRecordingsCall(String accountId, String conferenceId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call listConferenceRecordingsCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://voice.bandwidth.com/api/v2" };
@@ -850,12 +850,12 @@ public okhttp3.Call listConferenceRecordingsCall(String accountId, String confer
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call listConferenceRecordingsValidateBeforeCall(String accountId, String conferenceId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call listConferenceRecordingsValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling listConferenceRecordings(Async)");
@@ -892,7 +892,7 @@ private okhttp3.Call listConferenceRecordingsValidateBeforeCall(String accountId
500 Internal Server Error -
*/
- public List 500 Internal Server Error - > localVarResp = listConferenceRecordingsWithHttpInfo(accountId, conferenceId);
return localVarResp.getData();
}
@@ -919,7 +919,7 @@ public List
*/
- public ApiResponse 500 Internal Server Error - > listConferenceRecordingsWithHttpInfo(String accountId, String conferenceId) throws ApiException {
+ public ApiResponse
> listConferenceRecordingsWithHttpInfo(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId) throws ApiException {
okhttp3.Call localVarCall = listConferenceRecordingsValidateBeforeCall(accountId, conferenceId, null);
Type localVarReturnType = new TypeToken
>(){}.getType();
return localVarApiClient.execute(localVarCall, localVarReturnType);
@@ -948,7 +948,7 @@ public ApiResponse
> listConferenceRecordingsWi
*/
- public okhttp3.Call listConferenceRecordingsAsync(String accountId, String conferenceId, final ApiCallback 500 Internal Server Error - > _callback) throws ApiException {
+ public okhttp3.Call listConferenceRecordingsAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, final ApiCallback
> _callback) throws ApiException {
okhttp3.Call localVarCall = listConferenceRecordingsValidateBeforeCall(accountId, conferenceId, _callback);
Type localVarReturnType = new TypeToken
>(){}.getType();
@@ -981,7 +981,7 @@ public okhttp3.Call listConferenceRecordingsAsync(String accountId, String confe
*/
- public okhttp3.Call listConferencesCall(String accountId, String name, String minCreatedTime, String maxCreatedTime, Integer pageSize, String pageToken, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call listConferencesCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String name, @javax.annotation.Nullable String minCreatedTime, @javax.annotation.Nullable String maxCreatedTime, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String pageToken, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://voice.bandwidth.com/api/v2" };
@@ -1042,12 +1042,12 @@ public okhttp3.Call listConferencesCall(String accountId, String name, String mi
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call listConferencesValidateBeforeCall(String accountId, String name, String minCreatedTime, String maxCreatedTime, Integer pageSize, String pageToken, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call listConferencesValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String name, @javax.annotation.Nullable String minCreatedTime, @javax.annotation.Nullable String maxCreatedTime, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String pageToken, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling listConferences(Async)");
@@ -1083,7 +1083,7 @@ private okhttp3.Call listConferencesValidateBeforeCall(String accountId, String
500 Internal Server Error -
*/
- public List 500 Internal Server Error - > localVarResp = listConferencesWithHttpInfo(accountId, name, minCreatedTime, maxCreatedTime, pageSize, pageToken);
return localVarResp.getData();
}
@@ -1114,7 +1114,7 @@ public List
*/
- public ApiResponse 500 Internal Server Error - > listConferencesWithHttpInfo(String accountId, String name, String minCreatedTime, String maxCreatedTime, Integer pageSize, String pageToken) throws ApiException {
+ public ApiResponse
> listConferencesWithHttpInfo(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String name, @javax.annotation.Nullable String minCreatedTime, @javax.annotation.Nullable String maxCreatedTime, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String pageToken) throws ApiException {
okhttp3.Call localVarCall = listConferencesValidateBeforeCall(accountId, name, minCreatedTime, maxCreatedTime, pageSize, pageToken, null);
Type localVarReturnType = new TypeToken
>(){}.getType();
return localVarApiClient.execute(localVarCall, localVarReturnType);
@@ -1147,7 +1147,7 @@ public ApiResponse
> listConferencesWithHttpInfo(String accountI
*/
- public okhttp3.Call listConferencesAsync(String accountId, String name, String minCreatedTime, String maxCreatedTime, Integer pageSize, String pageToken, final ApiCallback 500 Internal Server Error - > _callback) throws ApiException {
+ public okhttp3.Call listConferencesAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String name, @javax.annotation.Nullable String minCreatedTime, @javax.annotation.Nullable String maxCreatedTime, @javax.annotation.Nullable Integer pageSize, @javax.annotation.Nullable String pageToken, final ApiCallback
> _callback) throws ApiException {
okhttp3.Call localVarCall = listConferencesValidateBeforeCall(accountId, name, minCreatedTime, maxCreatedTime, pageSize, pageToken, _callback);
Type localVarReturnType = new TypeToken
>(){}.getType();
@@ -1177,7 +1177,7 @@ public okhttp3.Call listConferencesAsync(String accountId, String name, String m
*/
- public okhttp3.Call updateConferenceCall(String accountId, String conferenceId, UpdateConference updateConference, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call updateConferenceCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull UpdateConference updateConference, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://voice.bandwidth.com/api/v2" };
@@ -1220,12 +1220,12 @@ public okhttp3.Call updateConferenceCall(String accountId, String conferenceId,
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call updateConferenceValidateBeforeCall(String accountId, String conferenceId, UpdateConference updateConference, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call updateConferenceValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull UpdateConference updateConference, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling updateConference(Async)");
@@ -1267,7 +1267,7 @@ private okhttp3.Call updateConferenceValidateBeforeCall(String accountId, String
500 Internal Server Error -
*/
- public void updateConference(String accountId, String conferenceId, UpdateConference updateConference) throws ApiException {
+ public void updateConference(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull UpdateConference updateConference) throws ApiException {
updateConferenceWithHttpInfo(accountId, conferenceId, updateConference);
}
@@ -1294,7 +1294,7 @@ public void updateConference(String accountId, String conferenceId, UpdateConfer
500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call updateConferenceAsync(String accountId, String conferenceId, UpdateConference updateConference, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call updateConferenceBxmlCall(String accountId, String conferenceId, String body, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call updateConferenceBxmlCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String body, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://voice.bandwidth.com/api/v2" };
@@ -1395,12 +1395,12 @@ public okhttp3.Call updateConferenceBxmlCall(String accountId, String conference
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call updateConferenceBxmlValidateBeforeCall(String accountId, String conferenceId, String body, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call updateConferenceBxmlValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String body, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling updateConferenceBxml(Async)");
@@ -1442,7 +1442,7 @@ private okhttp3.Call updateConferenceBxmlValidateBeforeCall(String accountId, St
500 Internal Server Error -
*/
- public void updateConferenceBxml(String accountId, String conferenceId, String body) throws ApiException {
+ public void updateConferenceBxml(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String body) throws ApiException {
updateConferenceBxmlWithHttpInfo(accountId, conferenceId, body);
}
@@ -1469,7 +1469,7 @@ public void updateConferenceBxml(String accountId, String conferenceId, String b
500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call updateConferenceBxmlAsync(String accountId, String conferenceId, String body, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call updateConferenceMemberCall(String accountId, String conferenceId, String memberId, UpdateConferenceMember updateConferenceMember, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call updateConferenceMemberCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String memberId, @javax.annotation.Nonnull UpdateConferenceMember updateConferenceMember, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://voice.bandwidth.com/api/v2" };
@@ -1572,12 +1572,12 @@ public okhttp3.Call updateConferenceMemberCall(String accountId, String conferen
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call updateConferenceMemberValidateBeforeCall(String accountId, String conferenceId, String memberId, UpdateConferenceMember updateConferenceMember, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call updateConferenceMemberValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String memberId, @javax.annotation.Nonnull UpdateConferenceMember updateConferenceMember, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling updateConferenceMember(Async)");
@@ -1625,7 +1625,7 @@ private okhttp3.Call updateConferenceMemberValidateBeforeCall(String accountId,
500 Internal Server Error -
*/
- public void updateConferenceMember(String accountId, String conferenceId, String memberId, UpdateConferenceMember updateConferenceMember) throws ApiException {
+ public void updateConferenceMember(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String memberId, @javax.annotation.Nonnull UpdateConferenceMember updateConferenceMember) throws ApiException {
updateConferenceMemberWithHttpInfo(accountId, conferenceId, memberId, updateConferenceMember);
}
@@ -1653,7 +1653,7 @@ public void updateConferenceMember(String accountId, String conferenceId, String
500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call updateConferenceMemberAsync(String accountId, String conferenceId, String memberId, UpdateConferenceMember updateConferenceMember, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call deleteMediaCall(String accountId, String mediaId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call deleteMediaCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String mediaId, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://messaging.bandwidth.com/api/v2" };
@@ -138,12 +138,12 @@ public okhttp3.Call deleteMediaCall(String accountId, String mediaId, final ApiC
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call deleteMediaValidateBeforeCall(String accountId, String mediaId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call deleteMediaValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String mediaId, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling deleteMedia(Async)");
@@ -179,7 +179,7 @@ private okhttp3.Call deleteMediaValidateBeforeCall(String accountId, String medi
500 Internal Server Error -
*/
- public void deleteMedia(String accountId, String mediaId) throws ApiException {
+ public void deleteMedia(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String mediaId) throws ApiException {
deleteMediaWithHttpInfo(accountId, mediaId);
}
@@ -205,7 +205,7 @@ public void deleteMedia(String accountId, String mediaId) throws ApiException {
500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call deleteMediaAsync(String accountId, String mediaId, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call getMediaCall(String accountId, String mediaId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call getMediaCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String mediaId, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://messaging.bandwidth.com/api/v2" };
@@ -304,12 +304,12 @@ public okhttp3.Call getMediaCall(String accountId, String mediaId, final ApiCall
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call getMediaValidateBeforeCall(String accountId, String mediaId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call getMediaValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String mediaId, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling getMedia(Async)");
@@ -346,7 +346,7 @@ private okhttp3.Call getMediaValidateBeforeCall(String accountId, String mediaId
500 Internal Server Error -
*/
- public File getMedia(String accountId, String mediaId) throws ApiException {
+ public File getMedia(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String mediaId) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call getMediaAsync(String accountId, String mediaId, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call listMediaCall(String accountId, String continuationToken, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call listMediaCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String continuationToken, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://messaging.bandwidth.com/api/v2" };
@@ -477,12 +477,12 @@ public okhttp3.Call listMediaCall(String accountId, String continuationToken, fi
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call listMediaValidateBeforeCall(String accountId, String continuationToken, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call listMediaValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String continuationToken, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling listMedia(Async)");
@@ -514,7 +514,7 @@ private okhttp3.Call listMediaValidateBeforeCall(String accountId, String contin
500 Internal Server Error -
*/
- public List 500 Internal Server Error - > localVarResp = listMediaWithHttpInfo(accountId, continuationToken);
return localVarResp.getData();
}
@@ -541,7 +541,7 @@ public List
*/
- public ApiResponse 500 Internal Server Error - > listMediaWithHttpInfo(String accountId, String continuationToken) throws ApiException {
+ public ApiResponse
> listMediaWithHttpInfo(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String continuationToken) throws ApiException {
okhttp3.Call localVarCall = listMediaValidateBeforeCall(accountId, continuationToken, null);
Type localVarReturnType = new TypeToken
>(){}.getType();
return localVarApiClient.execute(localVarCall, localVarReturnType);
@@ -570,7 +570,7 @@ public ApiResponse
> listMediaWithHttpInfo(String accountId, String c
*/
- public okhttp3.Call listMediaAsync(String accountId, String continuationToken, final ApiCallback 500 Internal Server Error - > _callback) throws ApiException {
+ public okhttp3.Call listMediaAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String continuationToken, final ApiCallback
> _callback) throws ApiException {
okhttp3.Call localVarCall = listMediaValidateBeforeCall(accountId, continuationToken, _callback);
Type localVarReturnType = new TypeToken
>(){}.getType();
@@ -602,7 +602,7 @@ public okhttp3.Call listMediaAsync(String accountId, String continuationToken, f
*/
- public okhttp3.Call uploadMediaCall(String accountId, String mediaId, File body, String contentType, String cacheControl, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call uploadMediaCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String mediaId, @javax.annotation.Nonnull File body, @javax.annotation.Nullable String contentType, @javax.annotation.Nullable String cacheControl, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://messaging.bandwidth.com/api/v2" };
@@ -702,12 +702,12 @@ public okhttp3.Call uploadMediaCall(String accountId, String mediaId, File body,
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call uploadMediaValidateBeforeCall(String accountId, String mediaId, File body, String contentType, String cacheControl, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call uploadMediaValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String mediaId, @javax.annotation.Nonnull File body, @javax.annotation.Nullable String contentType, @javax.annotation.Nullable String cacheControl, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling uploadMedia(Async)");
@@ -751,7 +751,7 @@ private okhttp3.Call uploadMediaValidateBeforeCall(String accountId, String medi
500 Internal Server Error -
*/
- public void uploadMedia(String accountId, String mediaId, File body, String contentType, String cacheControl) throws ApiException {
+ public void uploadMedia(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String mediaId, @javax.annotation.Nonnull File body, @javax.annotation.Nullable String contentType, @javax.annotation.Nullable String cacheControl) throws ApiException {
uploadMediaWithHttpInfo(accountId, mediaId, body, contentType, cacheControl);
}
@@ -780,7 +780,7 @@ public void uploadMedia(String accountId, String mediaId, File body, String cont
500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call uploadMediaAsync(String accountId, String mediaId, File body, String contentType, String cacheControl, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call createMessageCall(String accountId, MessageRequest messageRequest, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call createMessageCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull MessageRequest messageRequest, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://messaging.bandwidth.com/api/v2" };
@@ -145,12 +145,12 @@ public okhttp3.Call createMessageCall(String accountId, MessageRequest messageRe
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call createMessageValidateBeforeCall(String accountId, MessageRequest messageRequest, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call createMessageValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull MessageRequest messageRequest, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling createMessage(Async)");
@@ -188,7 +188,7 @@ private okhttp3.Call createMessageValidateBeforeCall(String accountId, MessageRe
500 Internal Server Error -
*/
- public Message createMessage(String accountId, MessageRequest messageRequest) throws ApiException {
+ public Message createMessage(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull MessageRequest messageRequest) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call createMessageAsync(String accountId, MessageRequest messageRequest, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call listMessagesCall(String accountId, String messageId, String sourceTn, String destinationTn, MessageStatusEnum messageStatus, ListMessageDirectionEnum messageDirection, String carrierName, MessageTypeEnum messageType, Integer errorCode, String fromDateTime, String toDateTime, String campaignId, Integer fromBwLatency, Boolean bwQueued, ProductTypeEnum product, String location, Boolean carrierQueued, Integer fromCarrierLatency, String callingNumberCountryA3, String calledNumberCountryA3, Integer fromSegmentCount, Integer toSegmentCount, Integer fromMessageSize, Integer toMessageSize, String sort, String pageToken, Integer limit, Boolean limitTotalCount, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call listMessagesCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String messageId, @javax.annotation.Nullable String sourceTn, @javax.annotation.Nullable String destinationTn, @javax.annotation.Nullable MessageStatusEnum messageStatus, @javax.annotation.Nullable ListMessageDirectionEnum messageDirection, @javax.annotation.Nullable String carrierName, @javax.annotation.Nullable MessageTypeEnum messageType, @javax.annotation.Nullable Integer errorCode, @javax.annotation.Nullable String fromDateTime, @javax.annotation.Nullable String toDateTime, @javax.annotation.Nullable String campaignId, @javax.annotation.Nullable Integer fromBwLatency, @javax.annotation.Nullable Boolean bwQueued, @javax.annotation.Nullable ProductTypeEnum product, @javax.annotation.Nullable String location, @javax.annotation.Nullable Boolean carrierQueued, @javax.annotation.Nullable Integer fromCarrierLatency, @javax.annotation.Nullable String callingNumberCountryA3, @javax.annotation.Nullable String calledNumberCountryA3, @javax.annotation.Nullable Integer fromSegmentCount, @javax.annotation.Nullable Integer toSegmentCount, @javax.annotation.Nullable Integer fromMessageSize, @javax.annotation.Nullable Integer toMessageSize, @javax.annotation.Nullable String sort, @javax.annotation.Nullable String pageToken, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Boolean limitTotalCount, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://messaging.bandwidth.com/api/v2" };
@@ -449,12 +449,12 @@ public okhttp3.Call listMessagesCall(String accountId, String messageId, String
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call listMessagesValidateBeforeCall(String accountId, String messageId, String sourceTn, String destinationTn, MessageStatusEnum messageStatus, ListMessageDirectionEnum messageDirection, String carrierName, MessageTypeEnum messageType, Integer errorCode, String fromDateTime, String toDateTime, String campaignId, Integer fromBwLatency, Boolean bwQueued, ProductTypeEnum product, String location, Boolean carrierQueued, Integer fromCarrierLatency, String callingNumberCountryA3, String calledNumberCountryA3, Integer fromSegmentCount, Integer toSegmentCount, Integer fromMessageSize, Integer toMessageSize, String sort, String pageToken, Integer limit, Boolean limitTotalCount, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call listMessagesValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String messageId, @javax.annotation.Nullable String sourceTn, @javax.annotation.Nullable String destinationTn, @javax.annotation.Nullable MessageStatusEnum messageStatus, @javax.annotation.Nullable ListMessageDirectionEnum messageDirection, @javax.annotation.Nullable String carrierName, @javax.annotation.Nullable MessageTypeEnum messageType, @javax.annotation.Nullable Integer errorCode, @javax.annotation.Nullable String fromDateTime, @javax.annotation.Nullable String toDateTime, @javax.annotation.Nullable String campaignId, @javax.annotation.Nullable Integer fromBwLatency, @javax.annotation.Nullable Boolean bwQueued, @javax.annotation.Nullable ProductTypeEnum product, @javax.annotation.Nullable String location, @javax.annotation.Nullable Boolean carrierQueued, @javax.annotation.Nullable Integer fromCarrierLatency, @javax.annotation.Nullable String callingNumberCountryA3, @javax.annotation.Nullable String calledNumberCountryA3, @javax.annotation.Nullable Integer fromSegmentCount, @javax.annotation.Nullable Integer toSegmentCount, @javax.annotation.Nullable Integer fromMessageSize, @javax.annotation.Nullable Integer toMessageSize, @javax.annotation.Nullable String sort, @javax.annotation.Nullable String pageToken, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Boolean limitTotalCount, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling listMessages(Async)");
@@ -511,7 +511,7 @@ private okhttp3.Call listMessagesValidateBeforeCall(String accountId, String mes
500 Internal Server Error -
*/
- public MessagesList listMessages(String accountId, String messageId, String sourceTn, String destinationTn, MessageStatusEnum messageStatus, ListMessageDirectionEnum messageDirection, String carrierName, MessageTypeEnum messageType, Integer errorCode, String fromDateTime, String toDateTime, String campaignId, Integer fromBwLatency, Boolean bwQueued, ProductTypeEnum product, String location, Boolean carrierQueued, Integer fromCarrierLatency, String callingNumberCountryA3, String calledNumberCountryA3, Integer fromSegmentCount, Integer toSegmentCount, Integer fromMessageSize, Integer toMessageSize, String sort, String pageToken, Integer limit, Boolean limitTotalCount) throws ApiException {
+ public MessagesList listMessages(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String messageId, @javax.annotation.Nullable String sourceTn, @javax.annotation.Nullable String destinationTn, @javax.annotation.Nullable MessageStatusEnum messageStatus, @javax.annotation.Nullable ListMessageDirectionEnum messageDirection, @javax.annotation.Nullable String carrierName, @javax.annotation.Nullable MessageTypeEnum messageType, @javax.annotation.Nullable Integer errorCode, @javax.annotation.Nullable String fromDateTime, @javax.annotation.Nullable String toDateTime, @javax.annotation.Nullable String campaignId, @javax.annotation.Nullable Integer fromBwLatency, @javax.annotation.Nullable Boolean bwQueued, @javax.annotation.Nullable ProductTypeEnum product, @javax.annotation.Nullable String location, @javax.annotation.Nullable Boolean carrierQueued, @javax.annotation.Nullable Integer fromCarrierLatency, @javax.annotation.Nullable String callingNumberCountryA3, @javax.annotation.Nullable String calledNumberCountryA3, @javax.annotation.Nullable Integer fromSegmentCount, @javax.annotation.Nullable Integer toSegmentCount, @javax.annotation.Nullable Integer fromMessageSize, @javax.annotation.Nullable Integer toMessageSize, @javax.annotation.Nullable String sort, @javax.annotation.Nullable String pageToken, @javax.annotation.Nullable Integer limit, @javax.annotation.Nullable Boolean limitTotalCount) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call listMessagesAsync(String accountId, String messageId, String sourceTn, String destinationTn, MessageStatusEnum messageStatus, ListMessageDirectionEnum messageDirection, String carrierName, MessageTypeEnum messageType, Integer errorCode, String fromDateTime, String toDateTime, String campaignId, Integer fromBwLatency, Boolean bwQueued, ProductTypeEnum product, String location, Boolean carrierQueued, Integer fromCarrierLatency, String callingNumberCountryA3, String calledNumberCountryA3, Integer fromSegmentCount, Integer toSegmentCount, Integer fromMessageSize, Integer toMessageSize, String sort, String pageToken, Integer limit, Boolean limitTotalCount, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call generateMessagingCodeCall(String accountId, CodeRequest codeRequest, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call generateMessagingCodeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CodeRequest codeRequest, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://mfa.bandwidth.com/api/v1" };
@@ -139,12 +139,12 @@ public okhttp3.Call generateMessagingCodeCall(String accountId, CodeRequest code
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call generateMessagingCodeValidateBeforeCall(String accountId, CodeRequest codeRequest, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call generateMessagingCodeValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CodeRequest codeRequest, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling generateMessagingCode(Async)");
@@ -177,7 +177,7 @@ private okhttp3.Call generateMessagingCodeValidateBeforeCall(String accountId, C
500 Internal Server Error -
*/
- public MessagingCodeResponse generateMessagingCode(String accountId, CodeRequest codeRequest) throws ApiException {
+ public MessagingCodeResponse generateMessagingCode(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CodeRequest codeRequest) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call generateMessagingCodeAsync(String accountId, CodeRequest codeRequest, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call generateVoiceCodeCall(String accountId, CodeRequest codeRequest, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call generateVoiceCodeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CodeRequest codeRequest, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://mfa.bandwidth.com/api/v1" };
@@ -292,12 +292,12 @@ public okhttp3.Call generateVoiceCodeCall(String accountId, CodeRequest codeRequ
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call generateVoiceCodeValidateBeforeCall(String accountId, CodeRequest codeRequest, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call generateVoiceCodeValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CodeRequest codeRequest, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling generateVoiceCode(Async)");
@@ -330,7 +330,7 @@ private okhttp3.Call generateVoiceCodeValidateBeforeCall(String accountId, CodeR
500 Internal Server Error -
*/
- public VoiceCodeResponse generateVoiceCode(String accountId, CodeRequest codeRequest) throws ApiException {
+ public VoiceCodeResponse generateVoiceCode(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CodeRequest codeRequest) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call generateVoiceCodeAsync(String accountId, CodeRequest codeRequest, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call verifyCodeCall(String accountId, VerifyCodeRequest verifyCodeRequest, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call verifyCodeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull VerifyCodeRequest verifyCodeRequest, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://mfa.bandwidth.com/api/v1" };
@@ -446,12 +446,12 @@ public okhttp3.Call verifyCodeCall(String accountId, VerifyCodeRequest verifyCod
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call verifyCodeValidateBeforeCall(String accountId, VerifyCodeRequest verifyCodeRequest, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call verifyCodeValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull VerifyCodeRequest verifyCodeRequest, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling verifyCode(Async)");
@@ -485,7 +485,7 @@ private okhttp3.Call verifyCodeValidateBeforeCall(String accountId, VerifyCodeRe
500 Internal Server Error -
*/
- public VerifyCodeResponse verifyCode(String accountId, VerifyCodeRequest verifyCodeRequest) throws ApiException {
+ public VerifyCodeResponse verifyCode(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull VerifyCodeRequest verifyCodeRequest) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call verifyCodeAsync(String accountId, VerifyCodeRequest verifyCodeRequest, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call createMultiChannelMessageCall(String accountId, MultiChannelMessageRequest multiChannelMessageRequest, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call createMultiChannelMessageCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull MultiChannelMessageRequest multiChannelMessageRequest, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://messaging.bandwidth.com/api/v2" };
@@ -139,12 +139,12 @@ public okhttp3.Call createMultiChannelMessageCall(String accountId, MultiChannel
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call createMultiChannelMessageValidateBeforeCall(String accountId, MultiChannelMessageRequest multiChannelMessageRequest, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call createMultiChannelMessageValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull MultiChannelMessageRequest multiChannelMessageRequest, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling createMultiChannelMessage(Async)");
@@ -182,7 +182,7 @@ private okhttp3.Call createMultiChannelMessageValidateBeforeCall(String accountI
500 Internal Server Error -
*/
- public CreateMultiChannelMessageResponse createMultiChannelMessage(String accountId, MultiChannelMessageRequest multiChannelMessageRequest) throws ApiException {
+ public CreateMultiChannelMessageResponse createMultiChannelMessage(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull MultiChannelMessageRequest multiChannelMessageRequest) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call createMultiChannelMessageAsync(String accountId, MultiChannelMessageRequest multiChannelMessageRequest, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call createLookupCall(String accountId, LookupRequest lookupRequest, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call createLookupCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull LookupRequest lookupRequest, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://numbers.bandwidth.com/api/v1" };
@@ -137,12 +137,12 @@ public okhttp3.Call createLookupCall(String accountId, LookupRequest lookupReque
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call createLookupValidateBeforeCall(String accountId, LookupRequest lookupRequest, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call createLookupValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull LookupRequest lookupRequest, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling createLookup(Async)");
@@ -177,7 +177,7 @@ private okhttp3.Call createLookupValidateBeforeCall(String accountId, LookupRequ
500 Internal Server Error -
*/
- public CreateLookupResponse createLookup(String accountId, LookupRequest lookupRequest) throws ApiException {
+ public CreateLookupResponse createLookup(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull LookupRequest lookupRequest) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call createLookupAsync(String accountId, LookupRequest lookupRequest, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call getLookupStatusCall(String accountId, String requestId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call getLookupStatusCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String requestId, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://numbers.bandwidth.com/api/v1" };
@@ -298,12 +298,12 @@ public okhttp3.Call getLookupStatusCall(String accountId, String requestId, fina
localVarHeaderParams.put("Content-Type", localVarContentType);
}
- String[] localVarAuthNames = new String[] { "Basic" };
+ String[] localVarAuthNames = new String[] { "Basic", "OAuth2" };
return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
- private okhttp3.Call getLookupStatusValidateBeforeCall(String accountId, String requestId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call getLookupStatusValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String requestId, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'accountId' is set
if (accountId == null) {
throw new ApiException("Missing the required parameter 'accountId' when calling getLookupStatus(Async)");
@@ -338,7 +338,7 @@ private okhttp3.Call getLookupStatusValidateBeforeCall(String accountId, String
500 Internal Server Error -
*/
- public LookupStatus getLookupStatus(String accountId, String requestId) throws ApiException {
+ public LookupStatus getLookupStatus(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String requestId) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call getLookupStatusAsync(String accountId, String requestId, final ApiCallback 500 Internal Server Error -