@@ -377,7 +377,7 @@ paths:
377377 $ref : ' #/components/requestBodies/updateCallRequest'
378378 responses :
379379 ' 200 ' :
380- description : Call was successfully modified.
380+ $ref : ' #/components/responses/updateCallResponse '
381381 ' 400 ' :
382382 $ref : ' #/components/responses/voiceBadRequestError'
383383 ' 401 ' :
@@ -777,7 +777,7 @@ paths:
777777 $ref : ' #/components/requestBodies/updateCallRecordingRequest'
778778 responses :
779779 ' 200 ' :
780- description : Recording state was successfully modified.
780+ $ref : ' #/components/responses/updateRecordingResponse '
781781 ' 400 ' :
782782 $ref : ' #/components/responses/voiceBadRequestError'
783783 ' 401 ' :
@@ -1324,7 +1324,7 @@ paths:
13241324 ' 403 ' :
13251325 $ref : ' #/components/responses/tnLookupForbiddenError'
13261326 ' 404 ' :
1327- description : Not Found
1327+ $ref : ' #/components/responses/tnLookupNotFoundError '
13281328 ' 429 ' :
13291329 $ref : ' #/components/responses/tnLookupTooManyRequestsError'
13301330 ' 500 ' :
@@ -2919,6 +2919,7 @@ components:
29192919 $ref : ' #/components/schemas/conferenceId'
29202920 memberUrl :
29212921 type : string
2922+ format : uri
29222923 description : >-
29232924 A URL that may be used to retrieve information about or update
29242925
@@ -4276,6 +4277,7 @@ components:
42764277 example : my-recording-name
42774278 callUrl :
42784279 type : string
4280+ format : uri
42794281 description : The URL of the call associated with the event.
42804282 example : >-
42814283 https://voice.bandwidth.com/api/v2/accounts/9900000/calls/c-15ac29a2-1331029c-2cb0-4a07-b215-b22865662d85
@@ -4735,7 +4737,7 @@ components:
47354737 schema :
47364738 $ref : ' #/components/schemas/messagingRequestError'
47374739 createCallResponse :
4738- description : Call Successfully Created
4740+ description : Created
47394741 headers :
47404742 Location :
47414743 description : The URL for further interactions with this call
@@ -4749,41 +4751,45 @@ components:
47494751 createCall Response :
47504752 $ref : ' #/components/examples/createCallResponseExample'
47514753 getCallStateResponse :
4752- description : Call found
4754+ description : OK
47534755 content :
47544756 application/json :
47554757 schema :
47564758 $ref : ' #/components/schemas/callState'
4759+ updateCallResponse :
4760+ description : OK
47574761 listCallsResponse :
4758- description : Calls retrieved successfully
4762+ description : OK
47594763 content :
47604764 application/json :
47614765 schema :
47624766 type : array
47634767 items :
47644768 $ref : ' #/components/schemas/callState'
47654769 getStatisticsResponse :
4766- description : Statistics Found
4770+ description : OK
47674771 content :
47684772 application/json :
47694773 schema :
47704774 $ref : ' #/components/schemas/accountStatistics'
4775+ updateRecordingResponse :
4776+ description : OK
47714777 listCallRecordingsResponse :
4772- description : Recordings retrieved successfully
4778+ description : OK
47734779 content :
47744780 application/json :
47754781 schema :
47764782 type : array
47774783 items :
47784784 $ref : ' #/components/schemas/callRecordingMetadata'
47794785 getCallRecordingResponse :
4780- description : Recording found
4786+ description : OK
47814787 content :
47824788 application/json :
47834789 schema :
47844790 $ref : ' #/components/schemas/callRecordingMetadata'
47854791 downloadRecordingMediaResponse :
4786- description : Media found
4792+ description : OK
47874793 content :
47884794 audio/vnd.wave :
47894795 schema :
@@ -4794,27 +4800,27 @@ components:
47944800 type : string
47954801 format : binary
47964802 getRecordingTranscriptionResponse :
4797- description : Transcription found.
4803+ description : OK
47984804 content :
47994805 application/json :
48004806 schema :
48014807 $ref : ' #/components/schemas/recordingTranscriptions'
48024808 listTranscriptionsResponse :
4803- description : Transcription found.
4809+ description : OK
48044810 content :
48054811 application/json :
48064812 schema :
48074813 $ref : ' #/components/schemas/callTranscriptionMetadataList'
48084814 getCallTranscriptionResponse :
4809- description : Transcription found.
4815+ description : OK
48104816 content :
48114817 application/json :
48124818 schema :
48134819 $ref : ' #/components/schemas/callTranscriptionResponse'
48144820 deleteCallTranscriptionResponse :
4815- description : Transcription data was deleted.
4821+ description : No Content
48164822 listConferencesResponse :
4817- description : Conferences retrieved successfully
4823+ description : OK
48184824 content :
48194825 application/json :
48204826 schema :
@@ -4825,27 +4831,27 @@ components:
48254831 listConferences Response :
48264832 $ref : ' #/components/examples/listConferencesResponseExample'
48274833 getConferenceResponse :
4828- description : Conferences retrieved successfully
4834+ description : OK
48294835 content :
48304836 application/json :
48314837 schema :
48324838 $ref : ' #/components/schemas/conference'
48334839 getConferenceMemberResponse :
4834- description : Conference member found
4840+ description : OK
48354841 content :
48364842 application/json :
48374843 schema :
48384844 $ref : ' #/components/schemas/conferenceMember'
48394845 listConferenceRecordingsResponse :
4840- description : Conference recordings retrieved successfully
4846+ description : OK
48414847 content :
48424848 application/json :
48434849 schema :
48444850 type : array
48454851 items :
48464852 $ref : ' #/components/schemas/conferenceRecordingMetadata'
48474853 getConferenceRecordingResponse :
4848- description : Conference recording found
4854+ description : OK
48494855 content :
48504856 application/json :
48514857 schema :
@@ -5068,6 +5074,8 @@ components:
50685074 summary : Example Unsupported Media Type Error
50695075 value :
50705076 message : Content-Type must be application/json.
5077+ tnLookupNotFoundError :
5078+ description : Not Found
50715079 tnLookupTooManyRequestsError :
50725080 description : Too Many Requests
50735081 content :
0 commit comments