diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index 33ee46ae..4a422647 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -225,6 +225,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 6328c542..758bb9c8 100644 --- a/.openapi-generator/VERSION +++ b/.openapi-generator/VERSION @@ -1 +1 @@ -7.17.0 +7.10.0 diff --git a/README.md b/README.md index 4edb5733..2921b911 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Bandwidth - API version: 1.0.0 - - Generator version: 7.17.0 + - Generator version: 7.10.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 @@ -362,6 +366,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 d981c4c6..e78881bc 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: @@ -4708,43 +4709,43 @@ paths: type: string style: simple requestBody: - $ref: "#/components/requestBodies/createSyncLookupRequest" + $ref: '#/components/requestBodies/createSyncLookupRequest' responses: "200": content: application/json: examples: lookupCompleteWithDniExample: - $ref: "#/components/examples/lookupCompleteWithDniExample" + $ref: '#/components/examples/lookupCompleteWithDniExample' lookupCompleteExample: - $ref: "#/components/examples/lookupCompleteExample" + $ref: '#/components/examples/lookupCompleteExample' lookupPartialExample: - $ref: "#/components/examples/lookupPartialExample" + $ref: '#/components/examples/lookupPartialExample' lookupFailedExample: - $ref: "#/components/examples/lookupFailedExample" + $ref: '#/components/examples/lookupFailedExample' schema: - $ref: "#/components/schemas/createSyncLookupResponse" + $ref: '#/components/schemas/createSyncLookupResponse' description: OK default: content: application/json: examples: badRequest: - $ref: "#/components/examples/badRequestExample" + $ref: '#/components/examples/badRequestExample' unauthorized: - $ref: "#/components/examples/unauthorizedExample" + $ref: '#/components/examples/unauthorizedExample' forbidden: - $ref: "#/components/examples/forbiddenExample" + $ref: '#/components/examples/forbiddenExample' mediaType: - $ref: "#/components/examples/unsupportedMediaTypeExample" + $ref: '#/components/examples/unsupportedMediaTypeExample' notFound: - $ref: "#/components/examples/notFoundExample" + $ref: '#/components/examples/notFoundExample' tooManyRequests: - $ref: "#/components/examples/tooManyRequestsExample" + $ref: '#/components/examples/tooManyRequestsExample' internalServer: - $ref: "#/components/examples/internalServerErrorExample" + $ref: '#/components/examples/internalServerErrorExample' schema: - $ref: "#/components/schemas/lookupErrorResponse" + $ref: '#/components/schemas/lookupErrorResponse' description: Bad Request summary: Create Synchronous Number Lookup tags: @@ -4773,37 +4774,37 @@ paths: type: string style: simple requestBody: - $ref: "#/components/requestBodies/createAsyncBulkLookupRequest" + $ref: '#/components/requestBodies/createAsyncBulkLookupRequest' responses: "202": content: application/json: examples: lookupInProgressExample: - $ref: "#/components/examples/lookupInProgressExample" + $ref: '#/components/examples/lookupInProgressExample' schema: - $ref: "#/components/schemas/createAsyncBulkLookupResponse" + $ref: '#/components/schemas/createAsyncBulkLookupResponse' description: Accepted default: content: application/json: examples: badRequest: - $ref: "#/components/examples/badRequestExample" + $ref: '#/components/examples/badRequestExample' unauthorized: - $ref: "#/components/examples/unauthorizedExample" + $ref: '#/components/examples/unauthorizedExample' forbidden: - $ref: "#/components/examples/forbiddenExample" + $ref: '#/components/examples/forbiddenExample' mediaType: - $ref: "#/components/examples/unsupportedMediaTypeExample" + $ref: '#/components/examples/unsupportedMediaTypeExample' notFound: - $ref: "#/components/examples/notFoundExample" + $ref: '#/components/examples/notFoundExample' tooManyRequests: - $ref: "#/components/examples/tooManyRequestsExample" + $ref: '#/components/examples/tooManyRequestsExample' internalServer: - $ref: "#/components/examples/internalServerErrorExample" + $ref: '#/components/examples/internalServerErrorExample' schema: - $ref: "#/components/schemas/lookupErrorResponse" + $ref: '#/components/schemas/lookupErrorResponse' description: Bad Request summary: Create Asynchronous Bulk Number Lookup tags: @@ -4845,38 +4846,38 @@ paths: application/json: examples: lookupCompleteWithDniExample: - $ref: "#/components/examples/lookupCompleteWithDniExample" + $ref: '#/components/examples/lookupCompleteWithDniExample' lookupCompleteExample: - $ref: "#/components/examples/lookupCompleteExample" + $ref: '#/components/examples/lookupCompleteExample' lookupInProgressExample: - $ref: "#/components/examples/lookupInProgressExample" + $ref: '#/components/examples/lookupInProgressExample' lookupPartialExample: - $ref: "#/components/examples/lookupPartialExample" + $ref: '#/components/examples/lookupPartialExample' lookupFailedExample: - $ref: "#/components/examples/lookupFailedExample" + $ref: '#/components/examples/lookupFailedExample' schema: - $ref: "#/components/schemas/getAsyncBulkLookupResponse" + $ref: '#/components/schemas/getAsyncBulkLookupResponse' description: OK default: content: application/json: examples: badRequest: - $ref: "#/components/examples/badRequestExample" + $ref: '#/components/examples/badRequestExample' unauthorized: - $ref: "#/components/examples/unauthorizedExample" + $ref: '#/components/examples/unauthorizedExample' forbidden: - $ref: "#/components/examples/forbiddenExample" + $ref: '#/components/examples/forbiddenExample' mediaType: - $ref: "#/components/examples/unsupportedMediaTypeExample" + $ref: '#/components/examples/unsupportedMediaTypeExample' notFound: - $ref: "#/components/examples/notFoundExample" + $ref: '#/components/examples/notFoundExample' tooManyRequests: - $ref: "#/components/examples/tooManyRequestsExample" + $ref: '#/components/examples/tooManyRequestsExample' internalServer: - $ref: "#/components/examples/internalServerErrorExample" + $ref: '#/components/examples/internalServerErrorExample' schema: - $ref: "#/components/schemas/lookupErrorResponse" + $ref: '#/components/schemas/lookupErrorResponse' description: Bad Request summary: Get Asynchronous Bulk Number Lookup tags: @@ -4890,7 +4891,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: @@ -4904,7 +4905,7 @@ paths: type: string style: simple requestBody: - $ref: "#/components/requestBodies/requestTollFreeVerificationRequest" + $ref: '#/components/requestBodies/requestTollFreeVerificationRequest' responses: "202": description: Accepted @@ -4919,7 +4920,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: @@ -4928,7 +4929,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: @@ -4937,7 +4938,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: @@ -4946,7 +4947,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: @@ -4955,7 +4956,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: @@ -4964,7 +4965,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: @@ -4973,7 +4974,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: @@ -5005,7 +5006,7 @@ paths: name: phoneNumber required: true schema: - $ref: "#/components/schemas/tfPhoneNumber" + $ref: '#/components/schemas/tfPhoneNumber' style: simple responses: "204": @@ -5017,7 +5018,7 @@ paths: description: Cannot process request. type: bad request schema: - $ref: "#/components/schemas/tfvError" + $ref: '#/components/schemas/tfvError' description: Bad Request "401": content: @@ -5026,7 +5027,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: @@ -5035,7 +5036,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: @@ -5044,7 +5045,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: @@ -5053,7 +5054,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: @@ -5062,7 +5063,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: @@ -5071,7 +5072,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: @@ -5080,7 +5081,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: @@ -5109,14 +5110,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: @@ -5125,7 +5126,7 @@ paths: description: Cannot process request. type: bad request schema: - $ref: "#/components/schemas/tfvError" + $ref: '#/components/schemas/tfvError' description: Bad Request "401": content: @@ -5134,7 +5135,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: @@ -5143,7 +5144,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: @@ -5152,7 +5153,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: @@ -5161,7 +5162,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: @@ -5170,7 +5171,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: @@ -5179,7 +5180,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: @@ -5188,7 +5189,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: @@ -5198,7 +5199,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). @@ -5220,10 +5221,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 @@ -5238,7 +5239,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: @@ -5247,7 +5248,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: @@ -5256,7 +5257,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: @@ -5265,7 +5266,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: @@ -5274,7 +5275,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: @@ -5283,7 +5284,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: @@ -5292,7 +5293,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: @@ -5324,7 +5325,7 @@ paths: content: application/json: schema: - $ref: "#/components/schemas/webhookSubscriptionsListBody" + $ref: '#/components/schemas/webhookSubscriptionsListBody' description: OK "400": content: @@ -5337,7 +5338,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: @@ -5346,7 +5347,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: @@ -5355,7 +5356,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: @@ -5364,7 +5365,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: @@ -5373,7 +5374,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: @@ -5382,7 +5383,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: @@ -5391,7 +5392,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: @@ -5415,13 +5416,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: @@ -5430,7 +5431,7 @@ paths: description: Cannot process request. type: bad request schema: - $ref: "#/components/schemas/tfvError" + $ref: '#/components/schemas/tfvError' description: Bad Request "401": content: @@ -5439,7 +5440,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: @@ -5448,7 +5449,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: @@ -5457,7 +5458,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: @@ -5466,7 +5467,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: @@ -5475,7 +5476,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: @@ -5484,7 +5485,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: @@ -5493,7 +5494,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: @@ -5537,7 +5538,7 @@ paths: description: Cannot process request. type: bad request schema: - $ref: "#/components/schemas/tfvError" + $ref: '#/components/schemas/tfvError' description: Bad Request "401": content: @@ -5546,7 +5547,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: @@ -5555,7 +5556,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: @@ -5564,7 +5565,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: @@ -5573,7 +5574,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: @@ -5582,7 +5583,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: @@ -5591,7 +5592,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: @@ -5600,7 +5601,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: @@ -5631,13 +5632,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: @@ -5646,7 +5647,7 @@ paths: description: Cannot process request. type: bad request schema: - $ref: "#/components/schemas/tfvError" + $ref: '#/components/schemas/tfvError' description: Bad Request "401": content: @@ -5655,7 +5656,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: @@ -5664,7 +5665,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: @@ -5673,7 +5674,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: @@ -5682,7 +5683,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: @@ -5691,7 +5692,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: @@ -5700,7 +5701,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: @@ -5709,7 +5710,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: @@ -5729,7 +5730,7 @@ paths: content: application/json: schema: - $ref: "#/components/schemas/useCases" + $ref: '#/components/schemas/useCases' description: OK "400": content: @@ -5738,7 +5739,7 @@ paths: description: Cannot process request. type: bad request schema: - $ref: "#/components/schemas/tfvError" + $ref: '#/components/schemas/tfvError' description: Bad Request "401": content: @@ -5747,7 +5748,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: @@ -5756,7 +5757,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: @@ -5765,7 +5766,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: @@ -5774,7 +5775,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: @@ -5783,7 +5784,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: @@ -5792,7 +5793,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: @@ -5801,7 +5802,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: @@ -5821,11 +5822,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\ @@ -5849,17 +5850,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.
@@ -5891,7 +5892,7 @@ components:
type: string
style: simple
requestBody:
- $ref: "#/components/requestBodies/verificationWebhookRequest"
+ $ref: '#/components/requestBodies/verificationWebhookRequest'
responses:
"204":
description: No Content
@@ -5902,7 +5903,7 @@ components:
description: Cannot process request.
type: bad request
schema:
- $ref: "#/components/schemas/tfvError"
+ $ref: '#/components/schemas/tfvError'
description: Bad Request
"401":
content:
@@ -5911,7 +5912,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:
@@ -5920,7 +5921,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:
@@ -5929,7 +5930,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:
@@ -5938,7 +5939,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:
@@ -5947,7 +5948,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:
@@ -5956,7 +5957,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:
@@ -5965,7 +5966,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:
@@ -6485,7 +6486,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.
@@ -6494,7 +6495,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
@@ -6515,7 +6516,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.
@@ -6589,7 +6590,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.
@@ -6955,7 +6956,7 @@ components:
name: phoneNumber
required: true
schema:
- $ref: "#/components/schemas/tfPhoneNumber"
+ $ref: '#/components/schemas/tfPhoneNumber'
style: simple
webhookSubscriptionIdPathParam:
description: Webhook subscription ID
@@ -6972,13 +6973,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:
@@ -7179,14 +7180,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
@@ -7216,19 +7217,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:
@@ -7249,20 +7250,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
createSyncLookupRequest:
@@ -7270,11 +7271,11 @@ 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/syncLookupRequest"
+ $ref: '#/components/schemas/syncLookupRequest'
description: Synchronous phone number lookup request.
required: true
createAsyncBulkLookupRequest:
@@ -7282,23 +7283,23 @@ components:
application/json:
examples:
multipleNumberRequestExample:
- $ref: "#/components/examples/multipleNumberRequestExample"
+ $ref: '#/components/examples/multipleNumberRequestExample'
schema:
- $ref: "#/components/schemas/asyncLookupRequest"
+ $ref: '#/components/schemas/asyncLookupRequest'
description: Asynchronous bulk 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:
@@ -7306,17 +7307,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
@@ -7325,19 +7326,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:
@@ -7352,7 +7353,7 @@ components:
application/json:
schema:
items:
- $ref: "#/components/schemas/media"
+ $ref: '#/components/schemas/media'
type: array
description: OK
headers:
@@ -7366,61 +7367,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:
@@ -7435,7 +7436,7 @@ components:
source:
field: "channelList[0].from"
schema:
- $ref: "#/components/schemas/multiChannelError"
+ $ref: '#/components/schemas/multiChannelError'
description: Bad Request
multiChannelNotAcceptableError:
description: Not Acceptable
@@ -7450,7 +7451,7 @@ components:
description: Authentication Failed
source: {}
schema:
- $ref: "#/components/schemas/multiChannelError"
+ $ref: '#/components/schemas/multiChannelError'
description: Unauthorized
multiChannelForbiddenError:
content:
@@ -7463,7 +7464,7 @@ components:
description: Access Denied
source: {}
schema:
- $ref: "#/components/schemas/multiChannelError"
+ $ref: '#/components/schemas/multiChannelError'
description: Forbidden
multiChannelNotFoundError:
content:
@@ -7476,7 +7477,7 @@ components:
description: Resource not found.
source: {}
schema:
- $ref: "#/components/schemas/multiChannelError"
+ $ref: '#/components/schemas/multiChannelError'
description: Not Found
multiChannelMethodNotAllowedError:
content:
@@ -7489,7 +7490,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:
@@ -7504,7 +7505,7 @@ components:
source:
header: Content-Type
schema:
- $ref: "#/components/schemas/multiChannelError"
+ $ref: '#/components/schemas/multiChannelError'
description: Unsupported Media Type
multiChannelTooManyRequestsError:
content:
@@ -7518,7 +7519,7 @@ components:
retry later.
source: {}
schema:
- $ref: "#/components/schemas/multiChannelError"
+ $ref: '#/components/schemas/multiChannelError'
description: Too Many Requests
multiChannelInternalServerError:
content:
@@ -7531,16 +7532,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:
@@ -7553,7 +7554,7 @@ components:
content:
application/json:
schema:
- $ref: "#/components/schemas/callState"
+ $ref: '#/components/schemas/callState'
description: OK
updateCallResponse:
description: OK
@@ -7562,14 +7563,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
@@ -7578,14 +7579,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:
@@ -7602,19 +7603,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
@@ -7623,109 +7624,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:
@@ -7739,149 +7740,149 @@ 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
createSyncLookupResponse:
content:
application/json:
examples:
lookupCompleteWithDniExample:
- $ref: "#/components/examples/lookupCompleteWithDniExample"
+ $ref: '#/components/examples/lookupCompleteWithDniExample'
lookupCompleteExample:
- $ref: "#/components/examples/lookupCompleteExample"
+ $ref: '#/components/examples/lookupCompleteExample'
lookupPartialExample:
- $ref: "#/components/examples/lookupPartialExample"
+ $ref: '#/components/examples/lookupPartialExample'
lookupFailedExample:
- $ref: "#/components/examples/lookupFailedExample"
+ $ref: '#/components/examples/lookupFailedExample'
schema:
- $ref: "#/components/schemas/createSyncLookupResponse"
+ $ref: '#/components/schemas/createSyncLookupResponse'
description: OK
createAsyncBulkLookupResponse:
content:
application/json:
examples:
lookupInProgressExample:
- $ref: "#/components/examples/lookupInProgressExample"
+ $ref: '#/components/examples/lookupInProgressExample'
schema:
- $ref: "#/components/schemas/createAsyncBulkLookupResponse"
+ $ref: '#/components/schemas/createAsyncBulkLookupResponse'
description: Accepted
getAsyncBulkLookupResponse:
content:
application/json:
examples:
lookupCompleteWithDniExample:
- $ref: "#/components/examples/lookupCompleteWithDniExample"
+ $ref: '#/components/examples/lookupCompleteWithDniExample'
lookupCompleteExample:
- $ref: "#/components/examples/lookupCompleteExample"
+ $ref: '#/components/examples/lookupCompleteExample'
lookupInProgressExample:
- $ref: "#/components/examples/lookupInProgressExample"
+ $ref: '#/components/examples/lookupInProgressExample'
lookupPartialExample:
- $ref: "#/components/examples/lookupPartialExample"
+ $ref: '#/components/examples/lookupPartialExample'
lookupFailedExample:
- $ref: "#/components/examples/lookupFailedExample"
+ $ref: '#/components/examples/lookupFailedExample'
schema:
- $ref: "#/components/schemas/getAsyncBulkLookupResponse"
+ $ref: '#/components/schemas/getAsyncBulkLookupResponse'
description: OK
tnLookupDefaultResponse:
content:
application/json:
examples:
badRequest:
- $ref: "#/components/examples/badRequestExample"
+ $ref: '#/components/examples/badRequestExample'
unauthorized:
- $ref: "#/components/examples/unauthorizedExample"
+ $ref: '#/components/examples/unauthorizedExample'
forbidden:
- $ref: "#/components/examples/forbiddenExample"
+ $ref: '#/components/examples/forbiddenExample'
mediaType:
- $ref: "#/components/examples/unsupportedMediaTypeExample"
+ $ref: '#/components/examples/unsupportedMediaTypeExample'
notFound:
- $ref: "#/components/examples/notFoundExample"
+ $ref: '#/components/examples/notFoundExample'
tooManyRequests:
- $ref: "#/components/examples/tooManyRequestsExample"
+ $ref: '#/components/examples/tooManyRequestsExample'
internalServer:
- $ref: "#/components/examples/internalServerErrorExample"
+ $ref: '#/components/examples/internalServerErrorExample'
schema:
- $ref: "#/components/schemas/lookupErrorResponse"
+ $ref: '#/components/schemas/lookupErrorResponse'
description: Bad Request
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:
@@ -7890,7 +7891,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
@@ -7904,7 +7905,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:
@@ -7913,7 +7914,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:
@@ -7922,7 +7923,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:
@@ -7931,7 +7932,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:
@@ -7940,7 +7941,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:
@@ -7949,7 +7950,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:
@@ -7958,7 +7959,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:
@@ -7967,7 +7968,7 @@ components:
description: Service Unavailable Error.
type: Service Unavailable
schema:
- $ref: "#/components/schemas/tfvError"
+ $ref: '#/components/schemas/tfvError'
description: Service Unavailable
schemas:
applicationId:
@@ -8112,10 +8113,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
@@ -8162,11 +8163,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.
@@ -8308,7 +8309,7 @@ components:
type: string
fieldErrors:
items:
- $ref: "#/components/schemas/fieldError"
+ $ref: '#/components/schemas/fieldError'
type: array
required:
- description
@@ -8399,7 +8400,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:
@@ -8434,7 +8435,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\
@@ -8495,7 +8496,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\
@@ -8652,14 +8653,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:
@@ -8685,7 +8686,7 @@ components:
links:
example: []
items:
- $ref: "#/components/schemas/link"
+ $ref: '#/components/schemas/link'
type: array
data:
nullable: true
@@ -8693,7 +8694,7 @@ components:
example: null
errors:
items:
- $ref: "#/components/schemas/errorObject"
+ $ref: '#/components/schemas/errorObject'
type: array
type: object
link:
@@ -8720,7 +8721,7 @@ components:
description: A detailed explanation of the error.
type: string
source:
- $ref: "#/components/schemas/errorSource"
+ $ref: '#/components/schemas/errorSource'
required:
- description
- source
@@ -8807,7 +8808,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:
@@ -8859,11 +8860,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:
@@ -8883,27 +8884,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:
@@ -8929,16 +8930,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:
@@ -8974,14 +8975,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:
@@ -9015,7 +9016,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
@@ -9037,7 +9038,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.
@@ -9049,7 +9050,7 @@ components:
type: object
rbmActionViewLocation:
allOf:
- - $ref: "#/components/schemas/rbmActionBase"
+ - $ref: '#/components/schemas/rbmActionBase'
- properties:
latitude:
description: The latitude of the location.
@@ -9073,7 +9074,7 @@ components:
type: object
multiChannelActionCalendarEvent:
allOf:
- - $ref: "#/components/schemas/rbmActionBase"
+ - $ref: '#/components/schemas/rbmActionBase'
- properties:
title:
description: The title of the event.
@@ -9103,7 +9104,7 @@ components:
type: object
rbmActionOpenUrl:
allOf:
- - $ref: "#/components/schemas/rbmActionBase"
+ - $ref: '#/components/schemas/rbmActionBase'
- properties:
url:
description: The URL to open in browser.
@@ -9118,24 +9119,24 @@ 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:
anyOf:
- - $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'
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
multiChannelChannelListObjectBase:
properties:
@@ -9150,7 +9151,7 @@ components:
example: 93de2206-9669-4e07-948d-329f4b722ee2
type: string
channel:
- $ref: "#/components/schemas/multiChannelMessageChannelEnum"
+ $ref: '#/components/schemas/multiChannelMessageChannelEnum'
required:
- applicationId
- channel
@@ -9158,35 +9159,35 @@ components:
type: object
multiChannelChannelListRBMObject:
allOf:
- - $ref: "#/components/schemas/multiChannelChannelListObjectBase"
+ - $ref: '#/components/schemas/multiChannelChannelListObjectBase'
- properties:
content:
- $ref: "#/components/schemas/multiChannelChannelListRBMObject_allOf_content"
+ $ref: '#/components/schemas/multiChannelChannelListRBMObject_allOf_content'
type: object
required:
- content
multiChannelChannelListSMSObject:
allOf:
- - $ref: "#/components/schemas/multiChannelChannelListObjectBase"
+ - $ref: '#/components/schemas/multiChannelChannelListObjectBase'
- properties:
content:
- $ref: "#/components/schemas/smsMessageContent"
+ $ref: '#/components/schemas/smsMessageContent'
type: object
required:
- content
multiChannelChannelListMMSObject:
allOf:
- - $ref: "#/components/schemas/multiChannelChannelListObjectBase"
+ - $ref: '#/components/schemas/multiChannelChannelListObjectBase'
- properties:
content:
- $ref: "#/components/schemas/mmsMessageContent"
+ $ref: '#/components/schemas/mmsMessageContent'
type: object
required:
- content
multiChannelChannelListRBMResponseObject:
allOf:
- - $ref: "#/components/schemas/multiChannelChannelListRBMObject"
- - $ref: "#/components/schemas/multiChannelChannelListOwnerObject"
+ - $ref: '#/components/schemas/multiChannelChannelListRBMObject'
+ - $ref: '#/components/schemas/multiChannelChannelListOwnerObject'
example:
owner: owner
channel: RBM
@@ -9217,22 +9218,22 @@ components:
text: Hello world
multiChannelChannelListSMSResponseObject:
allOf:
- - $ref: "#/components/schemas/multiChannelChannelListSMSObject"
- - $ref: "#/components/schemas/multiChannelChannelListOwnerObject"
+ - $ref: '#/components/schemas/multiChannelChannelListSMSObject'
+ - $ref: '#/components/schemas/multiChannelChannelListOwnerObject'
multiChannelChannelListMMSResponseObject:
allOf:
- - $ref: "#/components/schemas/multiChannelChannelListMMSObject"
- - $ref: "#/components/schemas/multiChannelChannelListOwnerObject"
+ - $ref: '#/components/schemas/multiChannelChannelListMMSObject'
+ - $ref: '#/components/schemas/multiChannelChannelListOwnerObject'
multiChannelChannelListRequestObject:
anyOf:
- - $ref: "#/components/schemas/multiChannelChannelListRBMObject"
- - $ref: "#/components/schemas/multiChannelChannelListSMSObject"
- - $ref: "#/components/schemas/multiChannelChannelListMMSObject"
+ - $ref: '#/components/schemas/multiChannelChannelListRBMObject'
+ - $ref: '#/components/schemas/multiChannelChannelListSMSObject'
+ - $ref: '#/components/schemas/multiChannelChannelListMMSObject'
discriminator:
mapping:
- RBM: "#/components/schemas/multiChannelChannelListRBMObject"
- SMS: "#/components/schemas/multiChannelChannelListSMSObject"
- MMS: "#/components/schemas/multiChannelChannelListMMSObject"
+ RBM: '#/components/schemas/multiChannelChannelListRBMObject'
+ SMS: '#/components/schemas/multiChannelChannelListSMSObject'
+ MMS: '#/components/schemas/multiChannelChannelListMMSObject'
propertyName: channel
multiChannelChannelListOwnerObject:
properties:
@@ -9245,14 +9246,14 @@ components:
type: object
multiChannelChannelListResponseObject:
anyOf:
- - $ref: "#/components/schemas/multiChannelChannelListRBMResponseObject"
- - $ref: "#/components/schemas/multiChannelChannelListSMSResponseObject"
- - $ref: "#/components/schemas/multiChannelChannelListMMSResponseObject"
+ - $ref: '#/components/schemas/multiChannelChannelListRBMResponseObject'
+ - $ref: '#/components/schemas/multiChannelChannelListSMSResponseObject'
+ - $ref: '#/components/schemas/multiChannelChannelListMMSResponseObject'
discriminator:
mapping:
- RBM: "#/components/schemas/multiChannelChannelListRBMResponseObject"
- SMS: "#/components/schemas/multiChannelChannelListSMSResponseObject"
- MMS: "#/components/schemas/multiChannelChannelListMMSResponseObject"
+ RBM: '#/components/schemas/multiChannelChannelListRBMResponseObject'
+ SMS: '#/components/schemas/multiChannelChannelListSMSResponseObject'
+ MMS: '#/components/schemas/multiChannelChannelListMMSResponseObject'
propertyName: channel
multiChannelMessageRequest:
description: Multi-Channel Message Request
@@ -9266,7 +9267,7 @@ components:
\ the order they are listed. Once a message sends successfully, the others\
\ will be ignored."
items:
- $ref: "#/components/schemas/multiChannelChannelListRequestObject"
+ $ref: '#/components/schemas/multiChannelChannelListRequestObject'
maxItems: 4
type: array
tag:
@@ -9276,7 +9277,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\
@@ -9419,7 +9420,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:
@@ -9433,7 +9434,7 @@ components:
\ the order they are listed. Once a message sends successfully, the others\
\ will be ignored."
items:
- $ref: "#/components/schemas/multiChannelChannelListResponseObject"
+ $ref: '#/components/schemas/multiChannelChannelListResponseObject'
maxItems: 4
type: array
tag:
@@ -9443,7 +9444,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\
@@ -9464,7 +9465,7 @@ components:
text:
type: string
media:
- $ref: "#/components/schemas/rbmMessageContentFile"
+ $ref: '#/components/schemas/rbmMessageContentFile'
type: object
rbmSuggestionResponse:
properties:
@@ -9501,17 +9502,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
@@ -9528,7 +9529,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.
@@ -9540,7 +9541,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
@@ -9567,7 +9568,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\
@@ -9579,7 +9580,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\
@@ -9649,7 +9650,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:
@@ -9682,9 +9683,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
@@ -9697,14 +9698,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
@@ -9868,7 +9869,7 @@ components:
maxLength: 2048
type: string
answerMethod:
- $ref: "#/components/schemas/callbackMethodEnum"
+ $ref: '#/components/schemas/callbackMethodEnum'
username:
description: Basic auth username.
example: mySecretUsername
@@ -9893,7 +9894,7 @@ components:
nullable: true
type: string
answerFallbackMethod:
- $ref: "#/components/schemas/callbackMethodEnum"
+ $ref: '#/components/schemas/callbackMethodEnum'
fallbackUsername:
description: Basic auth username.
example: mySecretUsername
@@ -9915,7 +9916,7 @@ components:
nullable: true
type: string
disconnectMethod:
- $ref: "#/components/schemas/callbackMethodEnum"
+ $ref: '#/components/schemas/callbackMethodEnum'
callTimeout:
default: 30
description: |-
@@ -9942,7 +9943,7 @@ components:
nullable: true
type: number
machineDetection:
- $ref: "#/components/schemas/machineDetectionConfiguration"
+ $ref: '#/components/schemas/machineDetectionConfiguration'
priority:
default: 5
description: |-
@@ -10049,14 +10050,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
@@ -10064,7 +10065,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
@@ -10164,7 +10165,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
@@ -10271,7 +10272,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
@@ -10285,7 +10286,7 @@ components:
nullable: true
type: string
redirectMethod:
- $ref: "#/components/schemas/redirectMethodEnum"
+ $ref: '#/components/schemas/redirectMethodEnum'
username:
description: Basic auth username.
example: mySecretUsername
@@ -10307,7 +10308,7 @@ components:
nullable: true
type: string
redirectFallbackMethod:
- $ref: "#/components/schemas/redirectMethodEnum"
+ $ref: '#/components/schemas/redirectMethodEnum'
fallbackUsername:
description: Basic auth username.
example: mySecretUsername
@@ -10339,7 +10340,7 @@ components:
updateCallRecording:
properties:
state:
- $ref: "#/components/schemas/recordingStateEnum"
+ $ref: '#/components/schemas/recordingStateEnum'
required:
- state
type: object
@@ -10431,7 +10432,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.
@@ -10449,7 +10450,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',\
@@ -10467,7 +10468,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
@@ -10524,7 +10525,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.
@@ -10536,14 +10537,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)
@@ -10554,7 +10555,7 @@ components:
nullable: true
type: string
redirectMethod:
- $ref: "#/components/schemas/redirectMethodEnum"
+ $ref: '#/components/schemas/redirectMethodEnum'
username:
description: Basic auth username.
example: mySecretUsername
@@ -10577,7 +10578,7 @@ components:
nullable: true
type: string
redirectFallbackMethod:
- $ref: "#/components/schemas/redirectMethodEnum"
+ $ref: '#/components/schemas/redirectMethodEnum'
fallbackUsername:
description: Basic auth username.
example: mySecretUsername
@@ -10730,7 +10731,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',\
@@ -10760,7 +10761,7 @@ components:
\ need more information."
properties:
mode:
- $ref: "#/components/schemas/machineDetectionModeEnum"
+ $ref: '#/components/schemas/machineDetectionModeEnum'
detectionTimeout:
default: 15
description: |-
@@ -10827,7 +10828,7 @@ components:
nullable: true
type: string
callbackMethod:
- $ref: "#/components/schemas/callbackMethodEnum"
+ $ref: '#/components/schemas/callbackMethodEnum'
username:
description: Basic auth username.
example: mySecretUsername
@@ -10851,7 +10852,7 @@ components:
nullable: true
type: string
fallbackMethod:
- $ref: "#/components/schemas/callbackMethodEnum"
+ $ref: '#/components/schemas/callbackMethodEnum'
fallbackUsername:
description: Basic auth username.
example: mySecretUsername
@@ -10877,7 +10878,7 @@ components:
format: uri
type: string
callbackMethod:
- $ref: "#/components/schemas/callbackMethodEnum"
+ $ref: '#/components/schemas/callbackMethodEnum'
username:
description: Basic auth username.
example: mySecretUsername
@@ -10928,7 +10929,7 @@ components:
properties:
transcripts:
items:
- $ref: "#/components/schemas/transcription"
+ $ref: '#/components/schemas/transcription'
type: array
type: object
callTranscriptionMetadataList:
@@ -10937,7 +10938,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:
@@ -10987,15 +10988,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.
@@ -11095,7 +11096,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
@@ -11130,7 +11131,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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CreateCall createCall, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call createCallCall(String accountId, 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(@javax.annotation.Nonnull String accountId, @
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CreateCall createCall, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call createCallValidateBeforeCall(String accountId, 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(@javax.annotation.Nonnull Stri
500 Internal Server Error -
*/
- public CreateCallResponse createCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CreateCall createCall) throws ApiException {
+ public CreateCallResponse createCall(String accountId, CreateCall createCall) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call createCallAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CreateCall createCall, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call getCallStateCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call getCallStateCall(String accountId, 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(@javax.annotation.Nonnull String accountId,
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call getCallStateValidateBeforeCall(String accountId, 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(@javax.annotation.Nonnull St
500 Internal Server Error -
*/
- public CallState getCallState(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId) throws ApiException {
+ public CallState getCallState(String accountId, String callId) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call getCallStateAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, final ApiCallback 500 Internal Server Error -
*/
- 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 {
+ 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 {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://voice.bandwidth.com/api/v2" };
@@ -511,12 +511,12 @@ public okhttp3.Call listCallsCall(@javax.annotation.Nonnull String accountId, @j
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(@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 {
+ 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 {
// 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(@javax.annotation.Nonnull Strin
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(@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 {
+ public ApiResponse
> listCallsWithHttpInfo(String accountId, String to, String from, String minStartTime, String maxStartTime, String disconnectCause, Integer pageSize, 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(@javax.annotation.Nonn
*/
- 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 500 Internal Server Error - > _callback) throws ApiException {
+ public okhttp3.Call listCallsAsync(String accountId, String to, String from, String minStartTime, String maxStartTime, String disconnectCause, Integer pageSize, 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(@javax.annotation.Nonnull String accountId, @
*/
- public okhttp3.Call updateCallCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, @javax.annotation.Nonnull UpdateCall updateCall, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call updateCallCall(String accountId, String callId, 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(@javax.annotation.Nonnull String accountId, @
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, @javax.annotation.Nonnull UpdateCall updateCall, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call updateCallValidateBeforeCall(String accountId, String callId, 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(@javax.annotation.Nonnull Stri
500 Internal Server Error -
*/
- public void updateCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, @javax.annotation.Nonnull UpdateCall updateCall) throws ApiException {
+ public void updateCall(String accountId, String callId, UpdateCall updateCall) throws ApiException {
updateCallWithHttpInfo(accountId, callId, updateCall);
}
@@ -772,7 +772,7 @@ public void updateCall(@javax.annotation.Nonnull String accountId, @javax.annota
500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call updateCallAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, @javax.annotation.Nonnull UpdateCall updateCall, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call updateCallBxmlCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, @javax.annotation.Nonnull String body, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call updateCallBxmlCall(String accountId, String callId, 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(@javax.annotation.Nonnull String accountI
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, @javax.annotation.Nonnull String body, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call updateCallBxmlValidateBeforeCall(String accountId, String callId, 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(@javax.annotation.Nonnull
500 Internal Server Error -
*/
- public void updateCallBxml(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, @javax.annotation.Nonnull String body) throws ApiException {
+ public void updateCallBxml(String accountId, String callId, String body) throws ApiException {
updateCallBxmlWithHttpInfo(accountId, callId, body);
}
@@ -951,7 +951,7 @@ public void updateCallBxml(@javax.annotation.Nonnull String accountId, @javax.an
500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call updateCallBxmlAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, @javax.annotation.Nonnull String body, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call downloadConferenceRecordingCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String recordingId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call downloadConferenceRecordingCall(String accountId, String conferenceId, 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(@javax.annotation.Nonnull St
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String recordingId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call downloadConferenceRecordingValidateBeforeCall(String accountId, String conferenceId, 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(@javax.annota
500 Internal Server Error -
*/
- public File downloadConferenceRecording(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String recordingId) throws ApiException {
+ public File downloadConferenceRecording(String accountId, String conferenceId, String recordingId) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call downloadConferenceRecordingAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String recordingId, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call getConferenceCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call getConferenceCall(String accountId, 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(@javax.annotation.Nonnull String accountId
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call getConferenceValidateBeforeCall(String accountId, 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(@javax.annotation.Nonnull S
500 Internal Server Error -
*/
- public Conference getConference(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId) throws ApiException {
+ public Conference getConference(String accountId, String conferenceId) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call getConferenceAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call getConferenceMemberCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String memberId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call getConferenceMemberCall(String accountId, String conferenceId, 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(@javax.annotation.Nonnull String acc
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String memberId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call getConferenceMemberValidateBeforeCall(String accountId, String conferenceId, 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(@javax.annotation.Non
500 Internal Server Error -
*/
- public ConferenceMember getConferenceMember(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String memberId) throws ApiException {
+ public ConferenceMember getConferenceMember(String accountId, String conferenceId, String memberId) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call getConferenceMemberAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String memberId, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call getConferenceRecordingCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String recordingId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call getConferenceRecordingCall(String accountId, String conferenceId, 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(@javax.annotation.Nonnull 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 getConferenceRecordingValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String recordingId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call getConferenceRecordingValidateBeforeCall(String accountId, String conferenceId, 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(@javax.annotation.
500 Internal Server Error -
*/
- public ConferenceRecordingMetadata getConferenceRecording(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String recordingId) throws ApiException {
+ public ConferenceRecordingMetadata getConferenceRecording(String accountId, String conferenceId, String recordingId) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call getConferenceRecordingAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String recordingId, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call listConferenceRecordingsCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call listConferenceRecordingsCall(String accountId, 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(@javax.annotation.Nonnull Strin
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call listConferenceRecordingsValidateBeforeCall(String accountId, 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(@javax.annotatio
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId) throws ApiException {
+ public ApiResponse
> listConferenceRecordingsWithHttpInfo(String accountId, 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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, final ApiCallback 500 Internal Server Error - > _callback) throws ApiException {
+ public okhttp3.Call listConferenceRecordingsAsync(String accountId, 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(@javax.annotation.Nonnull Stri
*/
- 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 {
+ public okhttp3.Call listConferencesCall(String accountId, String name, String minCreatedTime, String maxCreatedTime, Integer pageSize, 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(@javax.annotation.Nonnull String account
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(@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 {
+ private okhttp3.Call listConferencesValidateBeforeCall(String accountId, String name, String minCreatedTime, String maxCreatedTime, Integer pageSize, 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(@javax.annotation.Nonnull
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(@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 {
+ public ApiResponse
> listConferencesWithHttpInfo(String accountId, String name, String minCreatedTime, String maxCreatedTime, Integer pageSize, 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(@javax.annotati
*/
- 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 500 Internal Server Error - > _callback) throws ApiException {
+ public okhttp3.Call listConferencesAsync(String accountId, String name, String minCreatedTime, String maxCreatedTime, Integer pageSize, 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(@javax.annotation.Nonnull String accoun
*/
- public okhttp3.Call updateConferenceCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull UpdateConference updateConference, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call updateConferenceCall(String accountId, String conferenceId, 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(@javax.annotation.Nonnull String accoun
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull UpdateConference updateConference, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call updateConferenceValidateBeforeCall(String accountId, String conferenceId, 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(@javax.annotation.Nonnul
500 Internal Server Error -
*/
- public void updateConference(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull UpdateConference updateConference) throws ApiException {
+ public void updateConference(String accountId, String conferenceId, UpdateConference updateConference) throws ApiException {
updateConferenceWithHttpInfo(accountId, conferenceId, updateConference);
}
@@ -1294,7 +1294,7 @@ public void updateConference(@javax.annotation.Nonnull String accountId, @javax.
500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call updateConferenceAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull UpdateConference updateConference, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call updateConferenceBxmlCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String body, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call updateConferenceBxmlCall(String accountId, String conferenceId, 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(@javax.annotation.Nonnull String ac
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String body, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call updateConferenceBxmlValidateBeforeCall(String accountId, String conferenceId, 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(@javax.annotation.No
500 Internal Server Error -
*/
- public void updateConferenceBxml(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String body) throws ApiException {
+ public void updateConferenceBxml(String accountId, String conferenceId, String body) throws ApiException {
updateConferenceBxmlWithHttpInfo(accountId, conferenceId, body);
}
@@ -1469,7 +1469,7 @@ public void updateConferenceBxml(@javax.annotation.Nonnull String accountId, @ja
500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call updateConferenceBxmlAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String body, final ApiCallback 500 Internal Server Error -
*/
- 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 {
+ public okhttp3.Call updateConferenceMemberCall(String accountId, String conferenceId, String memberId, 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(@javax.annotation.Nonnull String
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(@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 {
+ private okhttp3.Call updateConferenceMemberValidateBeforeCall(String accountId, String conferenceId, String memberId, 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(@javax.annotation.
500 Internal Server Error -
*/
- 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 {
+ public void updateConferenceMember(String accountId, String conferenceId, String memberId, UpdateConferenceMember updateConferenceMember) throws ApiException {
updateConferenceMemberWithHttpInfo(accountId, conferenceId, memberId, updateConferenceMember);
}
@@ -1653,7 +1653,7 @@ public void updateConferenceMember(@javax.annotation.Nonnull String accountId, @
500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call updateConferenceMemberAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String conferenceId, @javax.annotation.Nonnull String memberId, @javax.annotation.Nonnull UpdateConferenceMember updateConferenceMember, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call deleteMediaCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String mediaId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call deleteMediaCall(String accountId, 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(@javax.annotation.Nonnull String accountId,
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String mediaId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call deleteMediaValidateBeforeCall(String accountId, 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(@javax.annotation.Nonnull Str
500 Internal Server Error -
*/
- public void deleteMedia(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String mediaId) throws ApiException {
+ public void deleteMedia(String accountId, String mediaId) throws ApiException {
deleteMediaWithHttpInfo(accountId, mediaId);
}
@@ -205,7 +205,7 @@ public void deleteMedia(@javax.annotation.Nonnull String accountId, @javax.annot
500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call deleteMediaAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String mediaId, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call getMediaCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String mediaId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call getMediaCall(String accountId, 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(@javax.annotation.Nonnull String accountId, @ja
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String mediaId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call getMediaValidateBeforeCall(String accountId, 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(@javax.annotation.Nonnull String
500 Internal Server Error -
*/
- public File getMedia(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String mediaId) throws ApiException {
+ public File getMedia(String accountId, String mediaId) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call getMediaAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String mediaId, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call listMediaCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String continuationToken, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call listMediaCall(String accountId, 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(@javax.annotation.Nonnull String accountId, @j
}
- 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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String continuationToken, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call listMediaValidateBeforeCall(String accountId, 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(@javax.annotation.Nonnull Strin
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String continuationToken) throws ApiException {
+ public ApiResponse
> listMediaWithHttpInfo(String accountId, 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(@javax.annotation.Nonnull
*/
- public okhttp3.Call listMediaAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nullable String continuationToken, final ApiCallback 500 Internal Server Error - > _callback) throws ApiException {
+ public okhttp3.Call listMediaAsync(String accountId, 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(@javax.annotation.Nonnull String accountId, @
*/
- 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 {
+ public okhttp3.Call uploadMediaCall(String accountId, String mediaId, File body, String contentType, 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(@javax.annotation.Nonnull String accountId,
}
- 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(@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 {
+ private okhttp3.Call uploadMediaValidateBeforeCall(String accountId, String mediaId, File body, String contentType, 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(@javax.annotation.Nonnull Str
500 Internal Server Error -
*/
- 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 {
+ public void uploadMedia(String accountId, String mediaId, File body, String contentType, String cacheControl) throws ApiException {
uploadMediaWithHttpInfo(accountId, mediaId, body, contentType, cacheControl);
}
@@ -780,7 +780,7 @@ public void uploadMedia(@javax.annotation.Nonnull String accountId, @javax.annot
500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call uploadMediaAsync(@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 500 Internal Server Error -
*/
- public okhttp3.Call createMessageCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull MessageRequest messageRequest, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call createMessageCall(String accountId, 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(@javax.annotation.Nonnull String accountId
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull MessageRequest messageRequest, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call createMessageValidateBeforeCall(String accountId, 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(@javax.annotation.Nonnull S
500 Internal Server Error -
*/
- public Message createMessage(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull MessageRequest messageRequest) throws ApiException {
+ public Message createMessage(String accountId, MessageRequest messageRequest) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call createMessageAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull MessageRequest messageRequest, final ApiCallback 500 Internal Server Error -
*/
- 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 {
+ 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 {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://messaging.bandwidth.com/api/v2" };
@@ -449,12 +449,12 @@ public okhttp3.Call listMessagesCall(@javax.annotation.Nonnull String accountId,
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(@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 {
+ 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 {
// 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(@javax.annotation.Nonnull St
500 Internal Server Error -
*/
- 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 {
+ 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 {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call listMessagesAsync(@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 500 Internal Server Error -
*/
- public okhttp3.Call generateMessagingCodeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CodeRequest codeRequest, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call generateMessagingCodeCall(String accountId, 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(@javax.annotation.Nonnull String a
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CodeRequest codeRequest, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call generateMessagingCodeValidateBeforeCall(String accountId, 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(@javax.annotation.N
500 Internal Server Error -
*/
- public MessagingCodeResponse generateMessagingCode(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CodeRequest codeRequest) throws ApiException {
+ public MessagingCodeResponse generateMessagingCode(String accountId, CodeRequest codeRequest) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call generateMessagingCodeAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CodeRequest codeRequest, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call generateVoiceCodeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CodeRequest codeRequest, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call generateVoiceCodeCall(String accountId, 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(@javax.annotation.Nonnull String accou
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CodeRequest codeRequest, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call generateVoiceCodeValidateBeforeCall(String accountId, 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(@javax.annotation.Nonnu
500 Internal Server Error -
*/
- public VoiceCodeResponse generateVoiceCode(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CodeRequest codeRequest) throws ApiException {
+ public VoiceCodeResponse generateVoiceCode(String accountId, CodeRequest codeRequest) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call generateVoiceCodeAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull CodeRequest codeRequest, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call verifyCodeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull VerifyCodeRequest verifyCodeRequest, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call verifyCodeCall(String accountId, 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(@javax.annotation.Nonnull String accountId, @
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull VerifyCodeRequest verifyCodeRequest, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call verifyCodeValidateBeforeCall(String accountId, 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(@javax.annotation.Nonnull Stri
500 Internal Server Error -
*/
- public VerifyCodeResponse verifyCode(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull VerifyCodeRequest verifyCodeRequest) throws ApiException {
+ public VerifyCodeResponse verifyCode(String accountId, VerifyCodeRequest verifyCodeRequest) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call verifyCodeAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull VerifyCodeRequest verifyCodeRequest, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call createMultiChannelMessageCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull MultiChannelMessageRequest multiChannelMessageRequest, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call createMultiChannelMessageCall(String accountId, 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(@javax.annotation.Nonnull Stri
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(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull MultiChannelMessageRequest multiChannelMessageRequest, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call createMultiChannelMessageValidateBeforeCall(String accountId, 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(@javax.annotati
500 Internal Server Error -
*/
- public CreateMultiChannelMessageResponse createMultiChannelMessage(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull MultiChannelMessageRequest multiChannelMessageRequest) throws ApiException {
+ public CreateMultiChannelMessageResponse createMultiChannelMessage(String accountId, MultiChannelMessageRequest multiChannelMessageRequest) throws ApiException {
ApiResponse 500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -
*/
- public okhttp3.Call createMultiChannelMessageAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull MultiChannelMessageRequest multiChannelMessageRequest, final ApiCallback 500 Internal Server Error -
*/
- public okhttp3.Call createAsyncBulkLookupCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull AsyncLookupRequest asyncLookupRequest, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call createAsyncBulkLookupCall(String accountId, AsyncLookupRequest asyncLookupRequest, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://api.bandwidth.com/v2" };
@@ -135,12 +135,12 @@ public okhttp3.Call createAsyncBulkLookupCall(@javax.annotation.Nonnull String a
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 createAsyncBulkLookupValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull AsyncLookupRequest asyncLookupRequest, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call createAsyncBulkLookupValidateBeforeCall(String accountId, AsyncLookupRequest asyncLookupRequest, 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 createAsyncBulkLookup(Async)");
@@ -170,7 +170,7 @@ private okhttp3.Call createAsyncBulkLookupValidateBeforeCall(@javax.annotation.N
0 Bad Request -
*/
- public CreateAsyncBulkLookupResponse createAsyncBulkLookup(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull AsyncLookupRequest asyncLookupRequest) throws ApiException {
+ public CreateAsyncBulkLookupResponse createAsyncBulkLookup(String accountId, AsyncLookupRequest asyncLookupRequest) throws ApiException {
ApiResponse 0 Bad Request -
*/
- public ApiResponse 0 Bad Request -
*/
- public okhttp3.Call createAsyncBulkLookupAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull AsyncLookupRequest asyncLookupRequest, final ApiCallback 0 Bad Request -
*/
- public okhttp3.Call createSyncLookupCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull SyncLookupRequest syncLookupRequest, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call createSyncLookupCall(String accountId, SyncLookupRequest syncLookupRequest, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://api.bandwidth.com/v2" };
@@ -276,12 +276,12 @@ public okhttp3.Call createSyncLookupCall(@javax.annotation.Nonnull String accoun
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 createSyncLookupValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull SyncLookupRequest syncLookupRequest, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call createSyncLookupValidateBeforeCall(String accountId, SyncLookupRequest syncLookupRequest, 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 createSyncLookup(Async)");
@@ -311,7 +311,7 @@ private okhttp3.Call createSyncLookupValidateBeforeCall(@javax.annotation.Nonnul
0 Bad Request -
*/
- public CreateSyncLookupResponse createSyncLookup(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull SyncLookupRequest syncLookupRequest) throws ApiException {
+ public CreateSyncLookupResponse createSyncLookup(String accountId, SyncLookupRequest syncLookupRequest) throws ApiException {
ApiResponse 0 Bad Request -
*/
- public ApiResponse 0 Bad Request -
*/
- public okhttp3.Call createSyncLookupAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull SyncLookupRequest syncLookupRequest, final ApiCallback 0 Bad Request -
*/
- public okhttp3.Call getAsyncBulkLookupCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull UUID requestId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call getAsyncBulkLookupCall(String accountId, UUID requestId, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://api.bandwidth.com/v2" };
@@ -417,12 +417,12 @@ public okhttp3.Call getAsyncBulkLookupCall(@javax.annotation.Nonnull String acco
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 getAsyncBulkLookupValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull UUID requestId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call getAsyncBulkLookupValidateBeforeCall(String accountId, UUID 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 getAsyncBulkLookup(Async)");
@@ -452,7 +452,7 @@ private okhttp3.Call getAsyncBulkLookupValidateBeforeCall(@javax.annotation.Nonn
0 Bad Request -
*/
- public GetAsyncBulkLookupResponse getAsyncBulkLookup(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull UUID requestId) throws ApiException {
+ public GetAsyncBulkLookupResponse getAsyncBulkLookup(String accountId, UUID requestId) throws ApiException {
ApiResponse 0 Bad Request -
*/
- public ApiResponse 0 Bad Request -
*/
- public okhttp3.Call getAsyncBulkLookupAsync(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull UUID requestId, final ApiCallback 0 Bad Request -
*/
- public okhttp3.Call deleteRecordingCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, @javax.annotation.Nonnull String recordingId, final ApiCallback _callback) throws ApiException {
+ public okhttp3.Call deleteRecordingCall(String accountId, String callId, String recordingId, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { "https://voice.bandwidth.com/api/v2" };
@@ -143,12 +143,12 @@ public okhttp3.Call deleteRecordingCall(@javax.annotation.Nonnull String account
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 deleteRecordingValidateBeforeCall(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, @javax.annotation.Nonnull String recordingId, final ApiCallback _callback) throws ApiException {
+ private okhttp3.Call deleteRecordingValidateBeforeCall(String accountId, String callId, 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 deleteRecording(Async)");
@@ -190,7 +190,7 @@ private okhttp3.Call deleteRecordingValidateBeforeCall(@javax.annotation.Nonnull
500 Internal Server Error -
*/
- public void deleteRecording(@javax.annotation.Nonnull String accountId, @javax.annotation.Nonnull String callId, @javax.annotation.Nonnull String recordingId) throws ApiException {
+ public void deleteRecording(String accountId, String callId, String recordingId) throws ApiException {
deleteRecordingWithHttpInfo(accountId, callId, recordingId);
}
@@ -217,7 +217,7 @@ public void deleteRecording(@javax.annotation.Nonnull String accountId, @javax.a
500 Internal Server Error -
*/
- public ApiResponse 500 Internal Server Error -