Initiate a Transcription
In order to initiate a transcription for an existing recording, you must do a POST request to the following endpoint.
Create transcription for a recording
Authorizations
HTTPRequired
Uses the Authorization header: 'AccessKey ' followed by your access key token (e.g., 'Authorization: AccessKey AbCdEfGhIjKlMnOpQrStUvWxYzAbCdEfGhIj')
Path parameters
workspaceIdstringRequired
recordingIdstringRequired
Body
localestring · enumRequiredDefault:
en-USExample: en-USPossible values: messageIdstring · uuidOptional
conversationIdstring · uuidOptional
recordingIdstring · uuidOptional
Responses
202
Transcription was accepted for processing
application/json
400
The request did not pass validation
application/json
404
The request did not pass validation
application/json
422
The request did not pass validation
application/json
post
/workspaces/{workspaceId}/recordings/{recordingId}/transcriptionsA transcription request is asynchronous. That means it will take some time before the result has been generated. This depends on the total duration of the recording.
curl "/workspaces/{workspaceId}/recordings/{recordId}/transcriptions" \
-H 'Authorization: AccessKey YOUR_SECRET_TOKEN'{
"id": "85530fbe-6dc1-4884-a9e6-e62b0f4c6df1",
"recordingId": "5b74ee9e-9d45-473a-82cd-f1f7feea6bbd",
"status": "accepted",
"stereo": false,
"locale": "en-US",
"createdAt": "2023-10-24T12:52:27.483Z",
"updatedAt": "2023-10-24T12:52:27.483Z"
}Last updated
Was this helpful?

