Skip to main content

Get result of transcription request

Endpoint Overview

Endpoint:
GET /api/companies/{companyCuid}/orchestrators/{orchestratorCuid}/transcriptionRequests/{processCuid}

This endpoint retrieves the current status and details of a transcription request using the process_cuid provided during request creation.


Path Parameters

ParameterDescriptionTypeRequiredExample
companyCuidUnique identifier of the companyStringYescmp_abc123
orchestratorCuidUnique identifier of the orchestratorStringYesorc_def456
processCuidUnique identifier of the transcription jobStringYesproc_789ghi

Response

If successful, the API returns detailed information about the transcription request, including status, step, actions, and metadata.

FieldDescriptionType
process_cuidUnique ID of the transcription processString
created_atTimestamp of process creationDateTime
updated_atTimestamp of last updateDateTime
statusOverall process status (pending, started, finished, etc.)String
stepCurrent processing step (uploading, transcribing, etc.)String
vocabularyOptional custom vocabulary usedString
external_refOptional client-supplied external referenceString
actionsList of actions with status, result, and webhook infoArray

Note on Failure Handling
If the process fails at any point, the overall status of the process and the status of the corresponding action will be set to "failed".
An error message will be provided in the error field of the corresponding action dictionary.
In the case of failure, no further actions will be executed and the process will be halted.

Example Response

{
"process_cuid": "abcd-1234-efgh-5678",
"created_at": "2025-01-01T12:00:00Z",
"updated_at": "2025-01-01T14:00:00Z",
"status": "started",
"step": "transcribing",
"vocabulary": "DalirSicx, metAl Plus, MeltiStake, TFGC, Q.U.A.R.T.Z.",
"external_ref": "1234-abcd-56ef-7891",
"actions": [
{
"action_type": "factual_summary",
"created_at": "2025-01-01T12:15:00Z",
"status": "pending",
"error": null,
"result": null,
"webhook": "https://example.com/webhook/factual-summary",
"external_metadata": {
"conversation_id": "afvvf67890dfsf",
"source": "workflow-manager",
"status": "in-progress"
}
}
]
}