Get Transcription Status
GET
{endpoint}conversion/status/{id}
MANDATORY PARAMETERS
Name |
Descriptions |
id |
Transcription id |
Example Request
curl -X GET \
"{endpoint}conversion/status/f84f5bf3-6374-4ecf-8aa6-b6339a5173d6"
-H 'Authorization: Bearer 6413a1acf4df6c41d028d0970xxxxx'
Example Response
{
"status": "OK",
"row": {
"id": "f84f5bf3-6374-4ecf-8aa6-b6339a5173d6",
"name": "from api audio",
"duration": "00:01:55",
"language": null,
"audio": "{domain/storage/sounds/20190832/f84f5bf3-6374-4ecf-8aa6-b6339a5173d6.mp3",
"created_at": "2019-08-07 16:53:41",
"updated_at": "2019-08-07 16:53:53",
"status": 0,
"status_name": "submitted"
}
}
{
"status": "ERROR",
"message": "Job not found",
"code": 404
}
Response Description
Name |
Descriptions |
id |
Transcription id |
name |
Transcription name |
duration |
Total duration of the transcription |
language |
Language of the transcription |
audio |
Audio file url |
status |
Transcription Status |
status_name |
Transcription Status Name |
Status Description
Code |
value |
Descriptions |
0 |
submitted |
Transcrion in submit state |
1 |
completed |
Transcrion is completed and ready to download |
2 |
processing |
Transcrion in under process |
5 |
failed |
Audo Transcrion in failed. Should try again |