Fetch a Transcription's sentences
GET/v2/transcriptions/:id/sentences
Fetches a Conversation Transcription's sentence data
Request
Path Parameters
id stringrequired
Transcription ID
Query Parameters
per_page integer
How many records to show per page in the range [1, 100]. Defaults to 25
page integer
The current page to fetch results from. Defaults to 1
include_paging_counts boolean
Whether to include total_pages and total_count in the metadata. Defaults to false
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
id uuidrequired
Transcription id
start_time number
Sentence start time
end_time number
Sentence end time
order_number number
Sentence order number
recording_attendee_id uuid
Attendee id
text string
Sentence text
conversation object
Reference to the Conversation
id string
_href uri
[
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"start_time": 0,
"end_time": 0,
"order_number": 0,
"recording_attendee_id": {},
"text": "string",
"conversation": {
"id": "string",
"_href": "string"
}
}
]
Loading...