Method: projects.transcriptions.list¶
Lists the Transcriptions of the specified project. List returns Transcriptions sorted by create_time descending.
The caller must have voice.transcriptions.list
permission on the project.
HTTP request¶
GET https://voice.api.enfonica.com/v1beta1/{parent}/transcriptions
Path parameters¶
Parameters | |
---|---|
parent | string The resource name of the parent of which to list transcriptions. May be of the form projects/*/calls/* to list the transcriptions of that specific call, or projects/* to list transcriptions across the entire project, which maps to projects/*/calls/- . |
Query parameters¶
Parameters | |
---|---|
pageSize | number (int32 format) The maximum number of Transcriptions to return in the response. Default value of 10 and maximum value of 100. |
pageToken | string A pagination token returned from a previous transcription to ListTranscriptions that indicates where this listing should continue from. |
view | enum (TranscriptionView) Configuration of partial responses. Defaults to BASIC. |
Request body¶
The request body must be empty.
Response body¶
The ListTranscriptions response transcription.
JSON representation
{
"transcriptions": [
{
object (Transcription)
}
],
"nextPageToken": string
}
Fields | |
---|---|
transcriptions[] | object (Transcription) A possibly paginated list of Transcriptions that are direct descendants of the specified parent resource. |
nextPageToken | string A pagination token returned from a previous transcription to ListTranscriptions that indicates from where listing should continue. |
TranscriptionView¶
Configuration of partial responses for the Transcription resource.
Enums | |
---|---|
TRANSCRIPTION_VIEW_UNSPECIFIED | The default / unset value. The API will default to BASIC for ListTranscriptions and FULL for GetTranscription. |
TRANSCRIPTION_VIEW_BASIC | Includes all fields except [utterances][enfonica.voice.v1beta1.Transcription.utterances]. This is the default for ListTranscriptions. |
TRANSCRIPTION_VIEW_FULL | Includes all fields. This is the default for GetTranscription. |