github.com/twilio/twilio-go@v1.20.1/rest/video/v1/docs/RoomsRecordingsApi.md (about) 1 # RoomsRecordingsApi 2 3 All URIs are relative to *https://video.twilio.com* 4 5 Method | HTTP request | Description 6 ------------- | ------------- | ------------- 7 [**DeleteRoomRecording**](RoomsRecordingsApi.md#DeleteRoomRecording) | **Delete** /v1/Rooms/{RoomSid}/Recordings/{Sid} | 8 [**FetchRoomRecording**](RoomsRecordingsApi.md#FetchRoomRecording) | **Get** /v1/Rooms/{RoomSid}/Recordings/{Sid} | 9 [**ListRoomRecording**](RoomsRecordingsApi.md#ListRoomRecording) | **Get** /v1/Rooms/{RoomSid}/Recordings | 10 11 12 13 ## DeleteRoomRecording 14 15 > DeleteRoomRecording(ctx, RoomSidSid) 16 17 18 19 20 21 ### Path Parameters 22 23 24 Name | Type | Description 25 ------------- | ------------- | ------------- 26 **ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. 27 **RoomSid** | **string** | The SID of the room with the RoomRecording resource to delete. 28 **Sid** | **string** | The SID of the RoomRecording resource to delete. 29 30 ### Other Parameters 31 32 Other parameters are passed through a pointer to a DeleteRoomRecordingParams struct 33 34 35 Name | Type | Description 36 ------------- | ------------- | ------------- 37 38 ### Return type 39 40 (empty response body) 41 42 ### Authorization 43 44 [accountSid_authToken](../README.md#accountSid_authToken) 45 46 ### HTTP request headers 47 48 - **Content-Type**: Not defined 49 - **Accept**: Not defined 50 51 [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) 52 [[Back to Model list]](../README.md#documentation-for-models) 53 [[Back to README]](../README.md) 54 55 56 ## FetchRoomRecording 57 58 > VideoV1RoomRecording FetchRoomRecording(ctx, RoomSidSid) 59 60 61 62 63 64 ### Path Parameters 65 66 67 Name | Type | Description 68 ------------- | ------------- | ------------- 69 **ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. 70 **RoomSid** | **string** | The SID of the Room resource with the recording to fetch. 71 **Sid** | **string** | The SID of the RoomRecording resource to fetch. 72 73 ### Other Parameters 74 75 Other parameters are passed through a pointer to a FetchRoomRecordingParams struct 76 77 78 Name | Type | Description 79 ------------- | ------------- | ------------- 80 81 ### Return type 82 83 [**VideoV1RoomRecording**](VideoV1RoomRecording.md) 84 85 ### Authorization 86 87 [accountSid_authToken](../README.md#accountSid_authToken) 88 89 ### HTTP request headers 90 91 - **Content-Type**: Not defined 92 - **Accept**: application/json 93 94 [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) 95 [[Back to Model list]](../README.md#documentation-for-models) 96 [[Back to README]](../README.md) 97 98 99 ## ListRoomRecording 100 101 > []VideoV1RoomRecording ListRoomRecording(ctx, RoomSidoptional) 102 103 104 105 106 107 ### Path Parameters 108 109 110 Name | Type | Description 111 ------------- | ------------- | ------------- 112 **ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. 113 **RoomSid** | **string** | The SID of the room with the RoomRecording resources to read. 114 115 ### Other Parameters 116 117 Other parameters are passed through a pointer to a ListRoomRecordingParams struct 118 119 120 Name | Type | Description 121 ------------- | ------------- | ------------- 122 **Status** | **string** | Read only the recordings with this status. Can be: `processing`, `completed`, or `deleted`. 123 **SourceSid** | **string** | Read only the recordings that have this `source_sid`. 124 **DateCreatedAfter** | **time.Time** | Read only recordings that started on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) datetime with time zone. 125 **DateCreatedBefore** | **time.Time** | Read only Recordings that started before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) datetime with time zone. 126 **PageSize** | **int** | How many resources to return in each list page. The default is 50, and the maximum is 1000. 127 **Limit** | **int** | Max number of records to return. 128 129 ### Return type 130 131 [**[]VideoV1RoomRecording**](VideoV1RoomRecording.md) 132 133 ### Authorization 134 135 [accountSid_authToken](../README.md#accountSid_authToken) 136 137 ### HTTP request headers 138 139 - **Content-Type**: Not defined 140 - **Accept**: application/json 141 142 [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) 143 [[Back to Model list]](../README.md#documentation-for-models) 144 [[Back to README]](../README.md) 145