From b6697f7f6da0c346f722e6549362e4c05dc1480e Mon Sep 17 00:00:00 2001 From: DX-Bandwidth Date: Tue, 27 Aug 2024 14:04:25 +0000 Subject: [PATCH] Generate SDK with OpenAPI Generator Version 7.7.0 --- .openapi-generator/FILES | 2 ++ README.md | 1 + bandwidth.yml | 60 ++++++++++++++++++++++++----------- bandwidth/__init__.py | 1 + bandwidth/api/messages_api.py | 18 +++++++++++ bandwidth/models/__init__.py | 1 + bandwidth/models/region.py | 38 ++++++++++++++++++++++ docs/CallsApi.md | 8 ++--- docs/ConferencesApi.md | 12 +++---- docs/MessagesApi.md | 7 ++-- docs/RecordingsApi.md | 12 +++---- docs/Region.md | 12 +++++++ docs/StatisticsApi.md | 2 +- docs/TranscriptionsApi.md | 6 ++-- 14 files changed, 139 insertions(+), 41 deletions(-) create mode 100644 bandwidth/models/region.py create mode 100644 docs/Region.md diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index a641d920..13602226 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -93,6 +93,7 @@ bandwidth/models/recording_transcription_metadata.py bandwidth/models/recording_transcriptions.py bandwidth/models/redirect_callback.py bandwidth/models/redirect_method_enum.py +bandwidth/models/region.py bandwidth/models/stir_shaken.py bandwidth/models/tag.py bandwidth/models/tn_lookup_request_error.py @@ -195,6 +196,7 @@ docs/RecordingTranscriptions.md docs/RecordingsApi.md docs/RedirectCallback.md docs/RedirectMethodEnum.md +docs/Region.md docs/StatisticsApi.md docs/StirShaken.md docs/Tag.md diff --git a/README.md b/README.md index 1de2f714..48b3202f 100644 --- a/README.md +++ b/README.md @@ -216,6 +216,7 @@ Class | Method | HTTP request | Description - [RecordingTranscriptions](docs/RecordingTranscriptions.md) - [RedirectCallback](docs/RedirectCallback.md) - [RedirectMethodEnum](docs/RedirectMethodEnum.md) + - [Region](docs/Region.md) - [StirShaken](docs/StirShaken.md) - [Tag](docs/Tag.md) - [TnLookupRequestError](docs/TnLookupRequestError.md) diff --git a/bandwidth.yml b/bandwidth.yml index e0b5f0dc..be8e426e 100644 --- a/bandwidth.yml +++ b/bandwidth.yml @@ -181,6 +181,7 @@ paths: - $ref: '#/components/parameters/pageToken' - $ref: '#/components/parameters/limit' - $ref: '#/components/parameters/limitTotalCount' + - $ref: '#/components/parameters/region' responses: '200': $ref: '#/components/responses/listMessagesResponse' @@ -377,7 +378,7 @@ paths: $ref: '#/components/requestBodies/updateCallRequest' responses: '200': - description: Call was successfully modified. + $ref: '#/components/responses/updateCallResponse' '400': $ref: '#/components/responses/voiceBadRequestError' '401': @@ -777,7 +778,7 @@ paths: $ref: '#/components/requestBodies/updateCallRecordingRequest' responses: '200': - description: Recording state was successfully modified. + $ref: '#/components/responses/updateRecordingResponse' '400': $ref: '#/components/responses/voiceBadRequestError' '401': @@ -1324,7 +1325,7 @@ paths: '403': $ref: '#/components/responses/tnLookupForbiddenError' '404': - description: Not Found + $ref: '#/components/responses/tnLookupNotFoundError' '429': $ref: '#/components/responses/tnLookupTooManyRequestsError' '500': @@ -1376,6 +1377,13 @@ components: - sms - mms example: sms + region: + type: string + enum: + - US + - EU + example: US + default: US fieldError: type: object properties: @@ -2919,6 +2927,7 @@ components: $ref: '#/components/schemas/conferenceId' memberUrl: type: string + format: uri description: >- A URL that may be used to retrieve information about or update @@ -4276,6 +4285,7 @@ components: example: my-recording-name callUrl: type: string + format: uri description: The URL of the call associated with the event. example: >- https://voice.bandwidth.com/api/v2/accounts/9900000/calls/c-15ac29a2-1331029c-2cb0-4a07-b215-b22865662d85 @@ -4735,7 +4745,7 @@ components: schema: $ref: '#/components/schemas/messagingRequestError' createCallResponse: - description: Call Successfully Created + description: Created headers: Location: description: The URL for further interactions with this call @@ -4749,13 +4759,15 @@ components: createCall Response: $ref: '#/components/examples/createCallResponseExample' getCallStateResponse: - description: Call found + description: OK content: application/json: schema: $ref: '#/components/schemas/callState' + updateCallResponse: + description: OK listCallsResponse: - description: Calls retrieved successfully + description: OK content: application/json: schema: @@ -4763,13 +4775,15 @@ components: items: $ref: '#/components/schemas/callState' getStatisticsResponse: - description: Statistics Found + description: OK content: application/json: schema: $ref: '#/components/schemas/accountStatistics' + updateRecordingResponse: + description: OK listCallRecordingsResponse: - description: Recordings retrieved successfully + description: OK content: application/json: schema: @@ -4777,13 +4791,13 @@ components: items: $ref: '#/components/schemas/callRecordingMetadata' getCallRecordingResponse: - description: Recording found + description: OK content: application/json: schema: $ref: '#/components/schemas/callRecordingMetadata' downloadRecordingMediaResponse: - description: Media found + description: OK content: audio/vnd.wave: schema: @@ -4794,27 +4808,27 @@ components: type: string format: binary getRecordingTranscriptionResponse: - description: Transcription found. + description: OK content: application/json: schema: $ref: '#/components/schemas/recordingTranscriptions' listTranscriptionsResponse: - description: Transcription found. + description: OK content: application/json: schema: $ref: '#/components/schemas/callTranscriptionMetadataList' getCallTranscriptionResponse: - description: Transcription found. + description: OK content: application/json: schema: $ref: '#/components/schemas/callTranscriptionResponse' deleteCallTranscriptionResponse: - description: Transcription data was deleted. + description: No Content listConferencesResponse: - description: Conferences retrieved successfully + description: OK content: application/json: schema: @@ -4825,19 +4839,19 @@ components: listConferences Response: $ref: '#/components/examples/listConferencesResponseExample' getConferenceResponse: - description: Conferences retrieved successfully + description: OK content: application/json: schema: $ref: '#/components/schemas/conference' getConferenceMemberResponse: - description: Conference member found + description: OK content: application/json: schema: $ref: '#/components/schemas/conferenceMember' listConferenceRecordingsResponse: - description: Conference recordings retrieved successfully + description: OK content: application/json: schema: @@ -4845,7 +4859,7 @@ components: items: $ref: '#/components/schemas/conferenceRecordingMetadata' getConferenceRecordingResponse: - description: Conference recording found + description: OK content: application/json: schema: @@ -5068,6 +5082,8 @@ components: summary: Example Unsupported Media Type Error value: message: Content-Type must be application/json. + tnLookupNotFoundError: + description: Not Found tnLookupTooManyRequestsError: description: Too Many Requests content: @@ -5283,6 +5299,12 @@ components: example: true schema: type: boolean + region: + name: region + in: query + description: The region to search in. One of US or EU. + schema: + $ref: '#/components/schemas/region' callId: name: callId in: path diff --git a/bandwidth/__init__.py b/bandwidth/__init__.py index 835b28b0..d0ea0086 100644 --- a/bandwidth/__init__.py +++ b/bandwidth/__init__.py @@ -116,6 +116,7 @@ from bandwidth.models.recording_transcriptions import RecordingTranscriptions from bandwidth.models.redirect_callback import RedirectCallback from bandwidth.models.redirect_method_enum import RedirectMethodEnum +from bandwidth.models.region import Region from bandwidth.models.stir_shaken import StirShaken from bandwidth.models.tag import Tag from bandwidth.models.tn_lookup_request_error import TnLookupRequestError diff --git a/bandwidth/api/messages_api.py b/bandwidth/api/messages_api.py index 93af0c06..3f5768cc 100644 --- a/bandwidth/api/messages_api.py +++ b/bandwidth/api/messages_api.py @@ -26,6 +26,7 @@ from bandwidth.models.message_status_enum import MessageStatusEnum from bandwidth.models.message_type_enum import MessageTypeEnum from bandwidth.models.messages_list import MessagesList +from bandwidth.models.region import Region from bandwidth.api_client import ApiClient, RequestSerialized from bandwidth.api_response import ApiResponse @@ -378,6 +379,7 @@ def list_messages( page_token: Annotated[Optional[StrictStr], Field(description="A base64 encoded value used for pagination of results.")] = None, limit: Annotated[Optional[StrictInt], Field(description="The maximum records requested in search result. Default 100. The sum of limit and after cannot be more than 10000.")] = None, limit_total_count: Annotated[Optional[StrictBool], Field(description="When set to true, the response's totalCount field will have a maximum value of 10,000. When set to false, or excluded, this will give an accurate totalCount of all messages that match the provided filters. If you are experiencing latency, try using this parameter to limit your results.")] = None, + region: Annotated[Optional[Region], Field(description="The region to search in. One of US or EU.")] = None, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -427,6 +429,8 @@ def list_messages( :type limit: int :param limit_total_count: When set to true, the response's totalCount field will have a maximum value of 10,000. When set to false, or excluded, this will give an accurate totalCount of all messages that match the provided filters. If you are experiencing latency, try using this parameter to limit your results. :type limit_total_count: bool + :param region: The region to search in. One of US or EU. + :type region: Region :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of @@ -466,6 +470,7 @@ def list_messages( page_token=page_token, limit=limit, limit_total_count=limit_total_count, + region=region, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, @@ -512,6 +517,7 @@ def list_messages_with_http_info( page_token: Annotated[Optional[StrictStr], Field(description="A base64 encoded value used for pagination of results.")] = None, limit: Annotated[Optional[StrictInt], Field(description="The maximum records requested in search result. Default 100. The sum of limit and after cannot be more than 10000.")] = None, limit_total_count: Annotated[Optional[StrictBool], Field(description="When set to true, the response's totalCount field will have a maximum value of 10,000. When set to false, or excluded, this will give an accurate totalCount of all messages that match the provided filters. If you are experiencing latency, try using this parameter to limit your results.")] = None, + region: Annotated[Optional[Region], Field(description="The region to search in. One of US or EU.")] = None, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -561,6 +567,8 @@ def list_messages_with_http_info( :type limit: int :param limit_total_count: When set to true, the response's totalCount field will have a maximum value of 10,000. When set to false, or excluded, this will give an accurate totalCount of all messages that match the provided filters. If you are experiencing latency, try using this parameter to limit your results. :type limit_total_count: bool + :param region: The region to search in. One of US or EU. + :type region: Region :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of @@ -600,6 +608,7 @@ def list_messages_with_http_info( page_token=page_token, limit=limit, limit_total_count=limit_total_count, + region=region, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, @@ -646,6 +655,7 @@ def list_messages_without_preload_content( page_token: Annotated[Optional[StrictStr], Field(description="A base64 encoded value used for pagination of results.")] = None, limit: Annotated[Optional[StrictInt], Field(description="The maximum records requested in search result. Default 100. The sum of limit and after cannot be more than 10000.")] = None, limit_total_count: Annotated[Optional[StrictBool], Field(description="When set to true, the response's totalCount field will have a maximum value of 10,000. When set to false, or excluded, this will give an accurate totalCount of all messages that match the provided filters. If you are experiencing latency, try using this parameter to limit your results.")] = None, + region: Annotated[Optional[Region], Field(description="The region to search in. One of US or EU.")] = None, _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -695,6 +705,8 @@ def list_messages_without_preload_content( :type limit: int :param limit_total_count: When set to true, the response's totalCount field will have a maximum value of 10,000. When set to false, or excluded, this will give an accurate totalCount of all messages that match the provided filters. If you are experiencing latency, try using this parameter to limit your results. :type limit_total_count: bool + :param region: The region to search in. One of US or EU. + :type region: Region :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of @@ -734,6 +746,7 @@ def list_messages_without_preload_content( page_token=page_token, limit=limit, limit_total_count=limit_total_count, + region=region, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, @@ -775,6 +788,7 @@ def _list_messages_serialize( page_token, limit, limit_total_count, + region, _request_auth, _content_type, _headers, @@ -860,6 +874,10 @@ def _list_messages_serialize( _query_params.append(('limitTotalCount', limit_total_count)) + if region is not None: + + _query_params.append(('region', region.value)) + # process the header parameters # process the form parameters # process the body parameter diff --git a/bandwidth/models/__init__.py b/bandwidth/models/__init__.py index da557bc1..f8c4141e 100644 --- a/bandwidth/models/__init__.py +++ b/bandwidth/models/__init__.py @@ -91,6 +91,7 @@ from bandwidth.models.recording_transcriptions import RecordingTranscriptions from bandwidth.models.redirect_callback import RedirectCallback from bandwidth.models.redirect_method_enum import RedirectMethodEnum +from bandwidth.models.region import Region from bandwidth.models.stir_shaken import StirShaken from bandwidth.models.tag import Tag from bandwidth.models.tn_lookup_request_error import TnLookupRequestError diff --git a/bandwidth/models/region.py b/bandwidth/models/region.py new file mode 100644 index 00000000..4ce8cc93 --- /dev/null +++ b/bandwidth/models/region.py @@ -0,0 +1,38 @@ +# coding: utf-8 + +""" + Bandwidth + + Bandwidth's Communication APIs + + The version of the OpenAPI document: 1.0.0 + Contact: letstalk@bandwidth.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import json +from enum import Enum +from typing_extensions import Self + + +class Region(str, Enum): + """ + Region + """ + + """ + allowed enum values + """ + US = 'US' + EU = 'EU' + + @classmethod + def from_json(cls, json_str: str) -> Self: + """Create an instance of Region from a JSON string""" + return cls(json.loads(json_str)) + + diff --git a/docs/CallsApi.md b/docs/CallsApi.md index c4e23a13..5e4896bc 100644 --- a/docs/CallsApi.md +++ b/docs/CallsApi.md @@ -89,7 +89,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**201** | Call Successfully Created | * Location - The URL for further interactions with this call
| +**201** | Created | * Location - The URL for further interactions with this call
| **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | @@ -178,7 +178,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Call found | - | +**200** | OK | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | @@ -279,7 +279,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Calls retrieved successfully | - | +**200** | OK | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | @@ -368,7 +368,7 @@ void (empty response body) | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Call was successfully modified. | - | +**200** | OK | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | diff --git a/docs/ConferencesApi.md b/docs/ConferencesApi.md index d840fa15..37a49db9 100644 --- a/docs/ConferencesApi.md +++ b/docs/ConferencesApi.md @@ -93,7 +93,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Media found | - | +**200** | OK | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | @@ -182,7 +182,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Conferences retrieved successfully | - | +**200** | OK | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | @@ -273,7 +273,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Conference member found | - | +**200** | OK | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | @@ -364,7 +364,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Conference recording found | - | +**200** | OK | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | @@ -453,7 +453,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Conference recordings retrieved successfully | - | +**200** | OK | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | @@ -550,7 +550,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Conferences retrieved successfully | - | +**200** | OK | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | diff --git a/docs/MessagesApi.md b/docs/MessagesApi.md index c4ba9ce6..43a4d3cb 100644 --- a/docs/MessagesApi.md +++ b/docs/MessagesApi.md @@ -99,7 +99,7 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **list_messages** -> MessagesList list_messages(account_id, message_id=message_id, source_tn=source_tn, destination_tn=destination_tn, message_status=message_status, message_direction=message_direction, carrier_name=carrier_name, message_type=message_type, error_code=error_code, from_date_time=from_date_time, to_date_time=to_date_time, campaign_id=campaign_id, sort=sort, page_token=page_token, limit=limit, limit_total_count=limit_total_count) +> MessagesList list_messages(account_id, message_id=message_id, source_tn=source_tn, destination_tn=destination_tn, message_status=message_status, message_direction=message_direction, carrier_name=carrier_name, message_type=message_type, error_code=error_code, from_date_time=from_date_time, to_date_time=to_date_time, campaign_id=campaign_id, sort=sort, page_token=page_token, limit=limit, limit_total_count=limit_total_count, region=region) List Messages @@ -115,6 +115,7 @@ from bandwidth.models.list_message_direction_enum import ListMessageDirectionEnu from bandwidth.models.message_status_enum import MessageStatusEnum from bandwidth.models.message_type_enum import MessageTypeEnum from bandwidth.models.messages_list import MessagesList +from bandwidth.models.region import Region from bandwidth.rest import ApiException from pprint import pprint @@ -155,10 +156,11 @@ with bandwidth.ApiClient(configuration) as api_client: page_token = 'gdEewhcJLQRB5' # str | A base64 encoded value used for pagination of results. (optional) limit = 50 # int | The maximum records requested in search result. Default 100. The sum of limit and after cannot be more than 10000. (optional) limit_total_count = true # bool | When set to true, the response's totalCount field will have a maximum value of 10,000. When set to false, or excluded, this will give an accurate totalCount of all messages that match the provided filters. If you are experiencing latency, try using this parameter to limit your results. (optional) + region = US # Region | The region to search in. One of US or EU. (optional) (default to US) try: # List Messages - api_response = api_instance.list_messages(account_id, message_id=message_id, source_tn=source_tn, destination_tn=destination_tn, message_status=message_status, message_direction=message_direction, carrier_name=carrier_name, message_type=message_type, error_code=error_code, from_date_time=from_date_time, to_date_time=to_date_time, campaign_id=campaign_id, sort=sort, page_token=page_token, limit=limit, limit_total_count=limit_total_count) + api_response = api_instance.list_messages(account_id, message_id=message_id, source_tn=source_tn, destination_tn=destination_tn, message_status=message_status, message_direction=message_direction, carrier_name=carrier_name, message_type=message_type, error_code=error_code, from_date_time=from_date_time, to_date_time=to_date_time, campaign_id=campaign_id, sort=sort, page_token=page_token, limit=limit, limit_total_count=limit_total_count, region=region) print("The response of MessagesApi->list_messages:\n") pprint(api_response) except Exception as e: @@ -188,6 +190,7 @@ Name | Type | Description | Notes **page_token** | **str**| A base64 encoded value used for pagination of results. | [optional] **limit** | **int**| The maximum records requested in search result. Default 100. The sum of limit and after cannot be more than 10000. | [optional] **limit_total_count** | **bool**| When set to true, the response's totalCount field will have a maximum value of 10,000. When set to false, or excluded, this will give an accurate totalCount of all messages that match the provided filters. If you are experiencing latency, try using this parameter to limit your results. | [optional] + **region** | [**Region**](.md)| The region to search in. One of US or EU. | [optional] [default to US] ### Return type diff --git a/docs/RecordingsApi.md b/docs/RecordingsApi.md index 82589940..6e367123 100644 --- a/docs/RecordingsApi.md +++ b/docs/RecordingsApi.md @@ -358,7 +358,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Media found | - | +**200** | OK | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | @@ -449,7 +449,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Recording found | - | +**200** | OK | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | @@ -540,7 +540,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Transcription found. | - | +**200** | OK | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | @@ -635,7 +635,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Recordings retrieved successfully | - | +**200** | OK | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | @@ -724,7 +724,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Recordings retrieved successfully | - | +**200** | OK | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | @@ -904,7 +904,7 @@ void (empty response body) | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Recording state was successfully modified. | - | +**200** | OK | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | diff --git a/docs/Region.md b/docs/Region.md new file mode 100644 index 00000000..f6048a2e --- /dev/null +++ b/docs/Region.md @@ -0,0 +1,12 @@ +# Region + + +## Enum + +* `US` (value: `'US'`) + +* `EU` (value: `'EU'`) + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/StatisticsApi.md b/docs/StatisticsApi.md index 7eb594bd..3df9571f 100644 --- a/docs/StatisticsApi.md +++ b/docs/StatisticsApi.md @@ -82,7 +82,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Statistics Found | - | +**200** | OK | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | diff --git a/docs/TranscriptionsApi.md b/docs/TranscriptionsApi.md index 695660b6..3fa1f2ce 100644 --- a/docs/TranscriptionsApi.md +++ b/docs/TranscriptionsApi.md @@ -85,7 +85,7 @@ void (empty response body) | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Transcription data was deleted. | - | +**200** | No Content | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | @@ -176,7 +176,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Transcription found. | - | +**200** | OK | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - | @@ -265,7 +265,7 @@ Name | Type | Description | Notes | Status code | Description | Response headers | |-------------|-------------|------------------| -**200** | Transcription found. | - | +**200** | OK | - | **400** | Bad Request | - | **401** | Unauthorized | - | **403** | Forbidden | - |