Recording Transcriptions
List all Transcriptions
List all transcriptions. Results are returned as a paginated list ordered by creation date (newest first).
Permissions
The API token used to authenticate must have the following scope(s) enabled to make a successful request: Voice.
Learn more about API scopes.
get/Accounts/{AccountSid}/Transcriptions
Path parameters
AccountSidstring uuid required
The unique identifier for the account that created this transcription.
Query parameters
DateCreatedstring
Filter by transcriptions created on this exact date (RFC 2822 format).
DateCreated<string
Filter by transcriptions created before this date (RFC 2822 format).
DateCreated>string
Filter by transcriptions created after this date (RFC 2822 format).
Pageinteger
The page number to retrieve (zero-indexed).
PageSizeinteger
The number of results per page. Default is 50, maximum is 1000.
PageTokenstring
Token for cursor-based pagination. Required when navigating to pages beyond the first.
Response
The request has succeeded.
Example response
{
"uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472ac/Transcriptions?Page=0&PageSize=50",
"first_page_uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472ac/Transcriptions",
"next_page_uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472ac/Transcriptions?Page=1&PageSize=50&PageToken=PAb3877c40-da60-4998-90ad-b792e98472tr",
"page_size": 50,
"transcriptions": [
{
"sid": "b3877c40-da60-4998-90ad-b792e98472tr",
"account_sid": "b3877c40-da60-4998-90ad-b792e98472ac",
"api_version": "2010-04-01",
"recording_sid": "b3877c40-da60-4998-90ad-b792e98472re",
"date_created": "Thu, 27 Sep 2018 02:00:00 +0000",
"date_updated": "Fri, 28 Sep 2018 03:00:00 +0000",
"duration": 60,
"price": "-0.00025",
"price_unit": "USD",
"status": "completed",
"transcription_text": "Hello, this is a test transcription.",
"uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472ac/Transcriptions/b3877c40-da60-4998-90ad-b792e98472tr.json"
}
]
}