github.com/twilio/twilio-go@v1.20.1/rest/api/v2010/docs/AccountsTranscriptionsApi.md (about) 1 # AccountsTranscriptionsApi 2 3 All URIs are relative to *https://api.twilio.com* 4 5 Method | HTTP request | Description 6 ------------- | ------------- | ------------- 7 [**DeleteTranscription**](AccountsTranscriptionsApi.md#DeleteTranscription) | **Delete** /2010-04-01/Accounts/{AccountSid}/Transcriptions/{Sid}.json | 8 [**FetchTranscription**](AccountsTranscriptionsApi.md#FetchTranscription) | **Get** /2010-04-01/Accounts/{AccountSid}/Transcriptions/{Sid}.json | 9 [**ListTranscription**](AccountsTranscriptionsApi.md#ListTranscription) | **Get** /2010-04-01/Accounts/{AccountSid}/Transcriptions.json | 10 11 12 13 ## DeleteTranscription 14 15 > DeleteTranscription(ctx, Sidoptional) 16 17 18 19 Delete a transcription from the account used to make the request 20 21 ### Path Parameters 22 23 24 Name | Type | Description 25 ------------- | ------------- | ------------- 26 **ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. 27 **Sid** | **string** | The Twilio-provided string that uniquely identifies the Transcription resource to delete. 28 29 ### Other Parameters 30 31 Other parameters are passed through a pointer to a DeleteTranscriptionParams struct 32 33 34 Name | Type | Description 35 ------------- | ------------- | ------------- 36 **PathAccountSid** | **string** | The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Transcription resources to delete. 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 ## FetchTranscription 57 58 > ApiV2010Transcription FetchTranscription(ctx, Sidoptional) 59 60 61 62 Fetch an instance of a Transcription 63 64 ### Path Parameters 65 66 67 Name | Type | Description 68 ------------- | ------------- | ------------- 69 **ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. 70 **Sid** | **string** | The Twilio-provided string that uniquely identifies the Transcription resource to fetch. 71 72 ### Other Parameters 73 74 Other parameters are passed through a pointer to a FetchTranscriptionParams struct 75 76 77 Name | Type | Description 78 ------------- | ------------- | ------------- 79 **PathAccountSid** | **string** | The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Transcription resource to fetch. 80 81 ### Return type 82 83 [**ApiV2010Transcription**](ApiV2010Transcription.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 ## ListTranscription 100 101 > []ApiV2010Transcription ListTranscription(ctx, optional) 102 103 104 105 Retrieve a list of transcriptions belonging to the account used to make the request 106 107 ### Path Parameters 108 109 This endpoint does not need any path parameter. 110 111 ### Other Parameters 112 113 Other parameters are passed through a pointer to a ListTranscriptionParams struct 114 115 116 Name | Type | Description 117 ------------- | ------------- | ------------- 118 **PathAccountSid** | **string** | The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Transcription resources to read. 119 **PageSize** | **int** | How many resources to return in each list page. The default is 50, and the maximum is 1000. 120 **Limit** | **int** | Max number of records to return. 121 122 ### Return type 123 124 [**[]ApiV2010Transcription**](ApiV2010Transcription.md) 125 126 ### Authorization 127 128 [accountSid_authToken](../README.md#accountSid_authToken) 129 130 ### HTTP request headers 131 132 - **Content-Type**: Not defined 133 - **Accept**: application/json 134 135 [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) 136 [[Back to Model list]](../README.md#documentation-for-models) 137 [[Back to README]](../README.md) 138